ATML1671Translator.model.modifier_function.Deserialize C# (CSharp) Метод

Deserialize() публичный статический Метод

public static Deserialize ( string input ) : modifier_function
input string
Результат modifier_function
        public static modifier_function Deserialize(string input)
        {
            StringReader stringReader = null;
            try
            {
                stringReader = new StringReader(input);
                return ((modifier_function)(Serializer.Deserialize(System.Xml.XmlReader.Create(stringReader))));
            }
            finally
            {
                if ((stringReader != null))
                {
                    stringReader.Dispose();
                }
            }
        }

Same methods

modifier_function::Deserialize ( string input, modifier_function &obj ) : bool
modifier_function::Deserialize ( string input, modifier_function &obj, Exception &exception ) : bool
modifier_function::Deserialize ( Stream s ) : modifier_function