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

Deserialize() public static method

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

Same methods

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