System.EnumSL.Parse C# (CSharp) Method

Parse() public static method

public static Parse ( Type objectType, string str ) : object
objectType Type
str string
return object
        public static object Parse(Type objectType, string str)
        {
            return Enum.Parse(objectType, str, true);
        }
EnumSL