c# open xml file from path and read it code example
Example: c# xmldocument from file
XmlDocument xmlDoc = new XmlDocument();
xmlDoc.Load("your file path");
XmlDocument xmlDoc = new XmlDocument();
xmlDoc.Load("your file path");