convert enum to integer in c# code example
Example 1: c# enum to int
Just cast the enum, e.g.
int something = (int) WeaponType.BFG;
Example 2: c# enum to int array
int[] b = Array.ConvertAll((int[])Enum.GetValues(typeof(TestEnum)), Convert.ToInt32);