Answers for "why do i need a string enum converter"

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 "why do i need a string enum converter"

C# Answers by Framework

Browse Popular Code Answers by Language