zoukankan      html  css  js  c++  java
  • C# 简单的反射机制实例

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Reflection;
    using System.Collections;
    using ConsoleApplication1;
    using ConsoleApplication2;
    
    namespace ConsoleApplication3
    {
        class Program
        {
            static void Main(string[] args)
            {
              
    
                string namespaceName1 = "ConsoleApplication1";
    
                ConAppPerson1 p1 = Assembly.Load(namespaceName1).CreateInstance(namespaceName1 + ".ConAppPerson1") as ConAppPerson1;
    
                p1.SayHello();
    
    
                string namespaceName2 = "ConsoleApplication2";
    
                ConAppPerson2 p2 = Assembly.Load(namespaceName2).CreateInstance(namespaceName2 + ".ConAppPerson2") as ConAppPerson2;
    
                p2.SayHello();
    
    
                Console.ReadKey();
    
    
            }
    
        }
    
    }
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    
    namespace ConsoleApplication1
    {
        public class ConAppPerson1
        {
            public string Name { get;set;}
    
            public int Age { get; set; }
    
            public void SayHello() {
                Console.WriteLine("ConsoleApplication111111 SayHello方法");
            }
        }
    }
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    
    namespace ConsoleApplication2
    {
        public class ConAppPerson2
        {
            public string Name { get; set; }
    
            public int Age { get; set; }
    
            public void SayHello()
            {
                Console.WriteLine("ConsoleApplication2222222 SayHello方法");
            }
    
        }
    
    }
  • 相关阅读:
    CouchDB
    在 Fabric 中使用私有数据
    Hyperledger Fabric 踩坑汇总
    书单
    HyperLedger Fabric 资料网址大全
    Hyperledger composer
    Hyperledger Fabric
    [转]以太坊智能合约编程之菜鸟教程
    [转]Ethereum-智能合约最佳实践
    [转]工作量证明(PoW)权益证明(PoS)和委任权益证明(DPoS)区别
  • 原文地址:https://www.cnblogs.com/zoro-zero/p/4064516.html
Copyright © 2011-2022 走看看