ToInt

public static int ToInt(Enum value) ;

Convert enum type to int type.

Parameter Name Description
value Enum type value you want to convert

Converted int type value

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

Convert enum type to int type.

Type Parameter Name Description Type Constraints
T Enum type to convert
  • Enum
Parameter Name Description
value Enum type value you want to convert

Converted int type value