Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
20
Task/Documentation/C-sharp/documentation.cs
Normal file
20
Task/Documentation/C-sharp/documentation.cs
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
/// <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;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue