using System;
public class Program
{
public static void Main()
/* This is a comment: everything inside should work */
// This is also a comment: everything to the right should work
/* Comments often end with "*/" characters */
// So is this a comment,
but this bit isn't.
/// A special documentation comment.
{ // comment here
Console.WriteLine("Hello World"); // and also a comment here
} // also a comment here
Console.WriteLine("Hello World");
{ Console.WriteLine("Hello World2"); }
// and also a comment here
}