Answers for "c# enum.getvalues to array"

C#
0

c# enum to int array

int[] b = Array.ConvertAll((int[])Enum.GetValues(typeof(TestEnum)), Convert.ToInt32);
Posted by: Guest on February-28-2020

C# Answers by Framework

Browse Popular Code Answers by Language