Answers for "enum get the value c#"

C#
0

enum get all values C#

//typed
var values = Enum.GetValues(typeof(Foos)).Cast<Foos>()
Posted by: Guest on April-28-2021

C# Answers by Framework

Browse Popular Code Answers by Language