我想要做的是得到Type
嵌套enum
在Class
只有该枚举数的名称作为字符串。
例子:
public static class MyClassWithEnumNested
{
public enum NestedEnum
{
SomeEnum1,
SomeEnum2,
SomeEnum3
}
}
我需要得到
Type type = //what shall I write here?
Type type = Type.GetType("MyClassWithEnumNested.NestedEnum");//that doesn't work
有没有办法Type
在运行时得到这个?
提前致谢:)