0

I have the following code:

XmlDocument doc = //A ton of code that generates the document"

XmlElement root = doc.DocumentElement;
XmlNodeList nodes = root.SelectNodes("ElementINeed");

string ElementINeedValue;

foreach(XmlElement node in nodes)
{
    ElementINeedValue = node.Value;
}

When I debug the code, node.Value > innerText holds the correct information I'm trying to get from the XML document. Problem is I can't save it, ElementINeedValue remains null

Alexander Petrov
  • 13,457
  • 2
  • 20
  • 49

0 Answers0