反映受保护的成员

时间:2011-12-07 09:56:42

标签: c# reflection

using System;
using System.Reflection;

namespace Reflection

{
    class Test
    {
        protected void methodname()
        {
            Console.WriteLine(("in the world of the reflection"));
            Console.Read();
        }
    }
    class Program
    {
        static void Main(string[] args)
        {
           // BindingFlags eFlags = BindingFlags.Default | BindingFlags.Instance | BindingFlags.Public|BindingFlags.NonPublic;
            BindingFlags eFlags = BindingFlags.Instance|BindingFlags.NonPublic;
            Test aTest = new Test();
            MethodInfo mInfoMethod = typeof(Reflection.Test).GetMethod("methodname", eFlags);
            mInfoMethod.Invoke(aTest, null);

        }
    }
}

根据msdn BindingFlags.Nonpublic用于访问非私有成员。如果我只使用此枚举,Getmethod将返回null值。但是如果使用枚举 - 实例和非公共,则调用所需的方法。这两者有什么区别。当我必须使用实例和公共/非公共组合时。

2 个答案:

答案 0 :(得分:3)

the documentation of GetMethod()

  

您必须指定BindingFlags.InstanceBindingFlags.Static才能获得回报。

Instance / StaticPublic / NonPublic指定了两个不同的内容,您必须同时指定两者才能获得结果。

答案 1 :(得分:1)

如果您未指定枚举,则使用默认值。如果这样做,则必须同时指定:

  • 公共或非公开(或两者)
  • 静态或实例(或两者)

(请参阅http://msdn.microsoft.com/en-us/library/system.reflection.bindingflags.aspx上的备注部分中的注释)