15
1
using System;
2
3
public class MonthProgram
4
{
5
public static void Main()
6
{
7
//get current month number
8
Console.WriteLine(DateTime.Now.ToString("MM"));
9
10
//get current month name, short hand
11
Console.WriteLine(DateTime.Now.ToString("MMM"));
12
//get current month name, full name
13
Console.WriteLine(DateTime.Now.ToString("MMMM"));
14
}
15
}
Cached Result