私がやろうとしているのは、その列挙子の名前だけを文字列として持つことにネストされているgetType
です。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
実行時にこれを取得する方法はありますか?
前もって感謝します:)