System.EnumSL.Parse C# (CSharp) 메소드

Parse() 공개 정적인 메소드

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