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

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

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

Same methods

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