CSMSL.IO.MzML.SelectedIonListType.Deserialize C# (CSharp) Метод

Deserialize() публичный статический Метод

public static Deserialize ( string xml ) : SelectedIonListType
xml string
Результат SelectedIonListType
        public static SelectedIonListType Deserialize(string xml)
        {
            System.IO.StringReader stringReader = null;
            try
            {
                stringReader = new System.IO.StringReader(xml);
                return ((SelectedIonListType)(Serializer.Deserialize(System.Xml.XmlReader.Create(stringReader))));
            }
            finally
            {
                if ((stringReader != null))
                {
                    stringReader.Dispose();
                }
            }
        }

Same methods

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