Mega Code Archive
Documentation Comments for Main function
using System;
namespace DocumentationCommentsExample
{
///
/// A documentation sample - the short description goes here
///
/// Where a longer description would go
class ClassExample
{
///
/// The main method for the program
///
/// command line arguments
static void Main(string[] args)
{
}
}
}