using System;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
string monthName = new DateTime(2013, 2, 27).ToString("MMMM");
Console.WriteLine(monthName); // February
monthName = new DateTime(2013, 2, 27).ToString("MMM");
Console.WriteLine(monthName); // Feb
}
}
}