I have a link to a file which simply contains:
C:\windows\temp\myxml.xml
<Sample test="value" />
The above is returned in my C# script as a string and is loaded into an XMLDocument this way:
XmlDocument xdocva = new XmlDocument();
xDocva.LoadXml(FileContent
ToString(C
:\windows\
temp\myxml
.xml));
How can I grab the value of test?
Thanks
Start Free Trial