System.EnumSL.Parse C# (CSharp) Méthode

Parse() public static méthode

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