ATMLModelLibrary.model.equipment.SpecificationGraph.Deserialize C# (CSharp) Method

Deserialize() public static method

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

Same methods

SpecificationGraph::Deserialize ( Stream s ) : SpecificationGraph
SpecificationGraph::Deserialize ( string input, SpecificationGraph &obj ) : bool
SpecificationGraph::Deserialize ( string input, SpecificationGraph &obj, Exception &exception ) : bool