Month date format

image_pdfimage_print
   
  

using System;
class Sample 
{

    public static void Main() 
    {
       Console.WriteLine("(M) Month:. . . . . . . . . . {0:M}
",DateTime.Now); 
    }
}