7

我想要做的是得到Type嵌套enumClass只有该枚举数的名称作为字符串。

例子:

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在运行时得到这个?

提前致谢:)

4

1 回答 1

10

这应该有效:

Type.GetType("MyClassWithEnumNested+NestedEnum");
于 2012-06-18T11:35:45.280 回答