ToInt

ToInt(Enum)

public static int ToInt(Enum value) ;

説明

enum型をint型に変換する。

パラメーター

パラメーター名 説明
value 変換したいenum型の値

戻り値

変換したint型の値

ToInt<T>(T)

public static int ToInt<T>(T value) ;

説明

enum型をint型に変換する。

型パラメーター

型パラメーター名 説明 型制約
T 変換するenum型
  • Enum

パラメーター

パラメーター名 説明
value 変換したいenum型の値

戻り値

変換したint型の値