int from enum c# code example
Example 1: get enum value c#
int something = (int) Question.Role;
Example 2: C# enum
enum CellphoneBrand {
Samsung,
Apple,
LG,
Nokia,
Huawei,
Motorola
}
int something = (int) Question.Role;
enum CellphoneBrand {
Samsung,
Apple,
LG,
Nokia,
Huawei,
Motorola
}