using System;
namespace DocumentationCommentsExample
{
/// <summary>
/// A documentation sample - the short description goes here
/// </summary>
/// <remarks>Where a longer description would go</remarks>
class ClassExample
{
/// <summary>
/// The main method for the program
/// </summary>
/// <param name="args">command line arguments</param>
static void Main(string[] args)
{
}
}
}