ATMLModelLibrary.model.signal.AM_SIGNAL.Deserialize C# (CSharp) Method

Deserialize() public static method

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

Same methods

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