Hi I have below xml file that I am trying to load in xml document using below code -
XmlDocument Doc = new XmlDocument(); Doc.LoadXml(@\"C:\\MappingFiles\\Input
Use XMLDocument.Load(). This accepts an xml file
whereas XMLDocument.LoadXml() accepts an xml string.