In C# I have written an XML comment for the main
method:
/// <summary>
/// Some comment.
/// </summary>
public static void Main(string[] args)
{
But Visual Studio warns me against it:
XML comment is not placed on a valid language element main
What is the recommended way to comment on the main
method in C#?