Parse¶
Parses the specified string as an XML node and returns the document element as an Xml instance.
myXml.Parse(xml: string):Xml (Xml)
Parameters¶
string xml
XML string to parse.
Returns¶
An Xml instance representing the parsed XML.
Remarks¶
Whitespace is preserved during XML parsing.
Parse an XML string and read a nested value¶
1 2 | |