AuScGen.BaseSetings.GetXmlDoc C# (CSharp) Method

GetXmlDoc() protected static method

protected static GetXmlDoc ( string XMLPath ) : XmlDocument
XMLPath string
return System.Xml.XmlDocument
        protected static XmlDocument GetXmlDoc(string XMLPath)
        {
            XmlDocument XmlDoc = new XmlDocument();
            XmlDoc.Load(XMLPath);
            return XmlDoc;
        }    
    }