Answers for "c# get values from enum"

C#
1

c# get all enum values

var values = Enum.GetValues(typeof(Foos));
Posted by: Guest on January-09-2021

C# Answers by Framework

Browse Popular Code Answers by Language