Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

cs string to enum

using System;
//Enum.Parse(Type enumType, String value, Boolean ignoreCase=false)
(T) Enum.Parse(typeof(T), value, true);
// or
T result;
Enum.TryParse<T>(value, true, out result) ? result : defaultValue;
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #cs #string #enum
ADD COMMENT
Topic
Name
9+1 =