MzIdentML.AbstractParamType.Deserialize C# (CSharp) Method

Deserialize() public static method

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

Same methods

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