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

Deserialize() public static method

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

Same methods

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