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

Deserialize() public static method

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

Same methods

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