Answers for "can you turn an enum into a list c#"

C#
3

c# convert enum to list

Enum.GetValues(typeof(SomeEnum)).Cast<SomeEnum>();
Posted by: Guest on December-03-2020

Code answers related to "can you turn an enum into a list c#"

C# Answers by Framework

Browse Popular Code Answers by Language