我有一个内部方法,其中一个输入参数是内部枚举。如何获取枚举值并将其传递给方法?
例子:
internal enum MyEnum
{
One,
Two,
Three
}
internal int InternalTest(string test, MyEnum enumTest)
{
return test.Length;
}
然后通过这样的东西获得:
MethodInfo addInternal = typeof(Class1).GetMethod("InternalTest", BindingFlags.Instance | BindingFlags.NonPublic, null, new Type[] { typeof(string), typeof(?????) }, null);
谢谢!
伊瓦尔