Answers for "how to add all values of a n enum in c#"

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
0

c# get value of object in enum

arrayName variable = (arrayName) index
//for example
Days day = (Days)3;
Posted by: Guest on May-17-2020

C# Answers by Framework

Browse Popular Code Answers by Language