[RESOLVED] Create online doc
I don't know what does this program do? Does it generate an XML file or no? If yes, where can I find that xml doc?
Code:
// This is just a comment
using System;
///<summary> class test has only one method</summary>
///
class Test
{
///<summary> string z contains identifier to output</summary>
///
private static string z = "Hello";
///<summary> method Main is an entry point of the program</summary>
///
public static void Main()
{
Console.WriteLine(z);
Console.ReadLine();
}
}