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

Deserialize() public static method

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

Same methods

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