assembly.GetTypes()

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

  1. using System;
  2. using System.Reflection;
  3.  
  4. namespace GetTypesTest
  5. {
  6. class Program
  7. {
  8. static void Main(string[] args)
  9. {
  10. Assembly asm = Assembly.GetExecutingAssembly();
  11. Type[] types = asm.GetTypes();
  12. foreach (Type type in types)
  13. {
  14. Type typeInterface = type.GetInterface("ITest");
  15. if (null != typeInterface)//判断是否实现了ITest接口
  16. {
  17. Object obj = asm.CreateInstance(type.FullName);//通过反射创建对象
  18. type.InvokeMember("Fun", BindingFlags.InvokeMethod, null, obj, null);//调用Fun()方法
  19. }
  20. }
  21.  
  22. Console.ReadLine();
  23. }
  24. }
  25.  
  26. public interface ITest
  27. {
  28. void Fun();
  29. }
  30.  
  31. public class TestA : ITest
  32. {
  33. public void Fun()
  34. {
  35. Console.WriteLine("TestA->Fun()");
  36. }
  37. }
  38.  
  39. public class TestB : ITest
  40. {
  41. public void Fun()
  42. {
  43. Console.WriteLine("TestB->Fun()");
  44. }
  45. }
  46. }
运行效果

GetTypes.png

标签: GetTypes

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号