7

私がやろうとしているのは、その列挙子の名前だけを文字列として持つことにネストされているgetTypeです。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 に答える