I need to get the numerical value of an Enum component. How can I achieve this?
int value = (int)YourEnum.YouValue;
It looks like you're new here. If you want to get involved, click one of these buttons!
Comments
int value = (int)YourEnum.YouValue;