Assembly.GetExecutingAssembly()

作者:追风剑情 发布于:2014-6-24 22:42 分类:C#

    1. using System;
  1. using System.Reflection;
  2. namespace AssemblyTest
  3. {
  4.     class Program
  5.     {
  6.         static void Main(string[] args)
  7.         {
  8.             //利用反射创建对象
  9.             Assembly asm = Assembly.GetExecutingAssembly();
  10.             Object obj = asm.CreateInstance("AssemblyTest.TestClass", true);
  11.             //调用对象的成员方法
  12.             Type t = typeof(TestClass);
  13.             t.InvokeMember("Fun", BindingFlags.InvokeMethod, null, obj, null);
  14.             //调用静态方法
  15.             t.InvokeMember("StaticFun", BindingFlags.InvokeMethod, null, null, null);
  16.             Console.ReadLine();
  17.         }
  18.     }
  19.     class TestClass
  20.     {
  21.         public void Fun()
  22.         {
  23.             Console.WriteLine("Invoke Fun");
  24.         }
  25.         public static void StaticFun()
  26.         {
  27.             Console.WriteLine("Invoke Static Fun");
  28.         }
  29.     }
  30. }
  1. 运行效果
  1. invokefun.png

标签: GetExecutingAssembly

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号