ATMLModelLibrary.model.common.ManufacturerIdentificationNumber.Deserialize C# (CSharp) Method

Deserialize() public static method

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

Same methods

ManufacturerIdentificationNumber::Deserialize ( System s ) : ManufacturerIdentificationNumber
ManufacturerIdentificationNumber::Deserialize ( string input, ManufacturerIdentificationNumber &obj ) : bool
ManufacturerIdentificationNumber::Deserialize ( string input, ManufacturerIdentificationNumber &obj, System &exception ) : bool