Answers for "how to convert enum into list in c# with value and key"

C#
1

c# convert enum to list

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

Code answers related to "how to convert enum into list in c# with value and key"

C# Answers by Framework

Browse Popular Code Answers by Language