CSMSL.IO.MzML.IndexListType.Deserialize C# (CSharp) Method

Deserialize() public static method

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

Same methods

IndexListType::Deserialize ( string xml, IndexListType &obj ) : bool
IndexListType::Deserialize ( string xml, IndexListType &obj, System &exception ) : bool