ATMLModelLibrary.model.signal.basic.Product.Deserialize C# (CSharp) Method

Deserialize() public static method

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

Same methods

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