Answers for "How can I cast string to enum?"

C#
1

How can I cast string to enum?

YourEnum foo = (YourEnum) Enum.Parse(typeof(YourEnum), yourString);
Posted by: Guest on July-01-2021

Code answers related to "How can I cast string to enum?"

C# Answers by Framework

Browse Popular Code Answers by Language