In VB.net when loading in XML documents using System.Xml.Xmldocument is there a way that I can specify a relative path to the file?
path = "file.xml"
xmld.Load(path)
The XML doc I'm trying to load is in the same directory as the VB class. But I'm having trouble accessing it without using a full path to the XML doc.