How does one go about finding the month name in C#? I don\'t want to write a huge switch statement or if statement on the month int. I
switch
if
int
If you just want to use MonthName then reference Microsoft.VisualBasic and it's in Microsoft.VisualBasic.DateAndTime
//eg. Get January String monthName = Microsoft.VisualBasic.DateAndTime.MonthName(1);