Hi, i try to load an xml file using XmlDocument.Load() like the codes shown below:

XmlDocument document = new XmlDocument();
document.Load(this._svgPath);

where this._svgPath is the path for the xml file.

My problem is, the loading time is about 40 seconds which i consider too long. Is there any way that i can make it load faster?

I am quite new in XML. Any advice is highly welcomed. Thank you