TypeProvider.GetEnumNames(Type) 方法

定义

提供一个字符串数组,其中包含指定的 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

适用于