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

Deserialize() public static method

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

Same methods

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