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

Deserialize() public static method

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

Same methods

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