• Activator.CreateInstance使用中的参数传入


    1、来定义一个接口

        public interface ICustom
        {
            
    string Get();
        }

    2、创建接口的两个实现CustomA和CustomB

    CustomA
    CustomB

    注意:实现中需要实现一个带两个参数的构造函数,我们会在动态调用中传入这两个参数


    3、 应用Activator.CreateInstance动态调用指定的ICustom的实现

    Code

    返回的结果是CustomA 00:00:03 net.pipe://localhost/StatisticProvider

    显示已经成功通过配置type来动态构建了一个相对应的接口了。

  • 相关阅读:
    iOS开发 数据缓存-数据库
    我是程序猿,我自豪,我骄傲!嗷嗷嗷!
    【Golang】练习-复制文件
    【Golang】练习-读取目录下的文件并按时间进行排序
    【Golang】练习 tailf 简单模拟
    【Golang】基础-切片 for 循环删除元素
    【Golang】基础-操作 csv 文件
    【Golang】Godoc 或者第三方 plugins 插件介绍
    【Golang】类型转换之 cast 包
    【Golang】解决 go get下载包慢或者失败的问题
  • 原文地址:https://www.cnblogs.com/chenjunbiao/p/1760206.html
Copyright © 2020-2023  润新知