MzIdentML.ParamListType.Deserialize C# (CSharp) Method

Deserialize() public static method

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

Same methods

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