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
為 null 參考 (在 Visual Basic 中為 Nothing
)。
enumType
不是 Enum。