How does one go about finding the month name in c#? I really do not want to write a huge switch statement or if statement on the month int. I know in vb.net you can use MonthName()
|
2
|
|
|
|
|
|
You can use the CultureInfo to get the month name. You can even get the short month name as well as other fun things. I would suggestion you put these into extension methods, which will allow you to write less code later. However you can implement however you like. Here is an example of how to do it using extension methods:
Hope this helps! |
||
|
|
|
|
If you just want to use MonthName then reference Microsoft.VisualBasic and it's in Microsoft.VisualBasic.DateAndTime
|
||
|
|
|
|
|
||||||||
|
|
|
Use the "MMMM" format specifier:
|
||
|
|
