21 lines
540 B
C#
21 lines
540 B
C#
/// <summary>
|
|
/// The XMLSystem class is here to help handle XML items in this site.
|
|
/// </summary>
|
|
public static class XMLSystem
|
|
{
|
|
static XMLSystem()
|
|
{
|
|
// Constructor
|
|
}
|
|
|
|
/// <summary>
|
|
/// A function to get the contents of an XML document.
|
|
/// </summary>
|
|
/// <param name="name">A valid name of an XML document in the data folder</param>
|
|
/// <returns>An XmlDocument containing the contents of the XML file</returns>
|
|
public static XmlDocument GetXML(string name)
|
|
{
|
|
return null;
|
|
}
|
|
}
|