Do no remove, this fixes the anchor on doc.flexsim.com
XML.load()
Parameters
xml |
The string of text to be parsed as XML and loaded into a document. |
Returns
Description
Load a string of XML into an XML document.
string xml = "<MyElement>Some text</MyElement>";
XML.Document doc = XML.load(xml);
...
Do no remove, this fixes the anchor on doc.flexsim.com
XML.loadFile()
Parameters
filePath |
The file name to be loaded into a document. |
Returns
Description
Load a file into an XML document.
string fileName = "test.xml";
XML.Document doc = XML.loadFile(fileName);
...