ATMLModelLibrary.model.common.complex.Deserialize C# (CSharp) Method

Deserialize() public static method

public static Deserialize ( string input ) : complex
input string
return complex
        public new static complex Deserialize(string input)
        {
            System.IO.StringReader stringReader = null;
            try
            {
                stringReader = new System.IO.StringReader(input);
                return ((complex)(Serializer.Deserialize(System.Xml.XmlReader.Create(stringReader))));
            }
            finally
            {
                if ((stringReader != null))
                {
                    stringReader.Dispose();
                }
            }
        }

Same methods

complex::Deserialize ( string input, complex &obj ) : bool
complex::Deserialize ( string input, complex &obj, System &exception ) : bool
complex::Deserialize ( System s ) : complex