我要做的是获取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
有没有办法在运行时获取此{{1}}?
提前致谢:)
答案 0 :(得分:10)
这应该有效:
Type.GetType("MyClassWithEnumNested+NestedEnum");