I\'m creating a ping application for school with an XML full of URLs. I lost an hour because of XmlNode.Value was resulting in a null.
XmlNode.Value
Then I changed i
Regarding to MSDN, Value property of XmlNodeType.Element returns:
Value
XmlNodeType.Element
null. You can use the XmlElement.InnerText or XmlElement.InnerXml properties to access the value of the element node.