ATMLModelLibrary.model.common.SoftwareInstance.Deserialize C# (CSharp) Method

Deserialize() public static method

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

Same methods

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