TypeProvider.GetEnumNames(Type) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
提供一个字符串数组,其中包含指定的 Enum 的名称并按索引顺序排列。
public:
static cli::array <System::String ^> ^ GetEnumNames(Type ^ enumType);
public static string[] GetEnumNames (Type enumType);
static member GetEnumNames : Type -> string[]
Public Shared Function GetEnumNames (enumType As Type) As String()
参数
- enumType
- Type
要从中获取名称的类型。
返回
- String[]
按索引顺序排列的指定的 Enum 名称。
例外
enumType
为空引用(在 Visual Basic 中为 Nothing
)。
enumType
不是 Enum。