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

Deserialize() public static method

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

Same methods

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