How to get complete month name from DateTime

后端 未结 9 1504
慢半拍i
慢半拍i 2020-12-07 23:58

What is the proper way to get the complete name of month of a DateTime object?
e.g. January, December.

I am currently usi

9条回答
  •  隐瞒了意图╮
    2020-12-08 00:16

    If you want the current month you can use DateTime.Now.ToString("MMMM") to get the full month or DateTime.Now.ToString("MMM") to get an abbreviated month.

    If you have some other date that you want to get the month string for, after it is loaded into a DateTime object, you can use the same functions off of that object:
    dt.ToString("MMMM") to get the full month or dt.ToString("MMM") to get an abbreviated month.

    Reference: Custom Date and Time Format Strings

    Alternatively, if you need culture specific month names, then you could try these: DateTimeFormatInfo.GetAbbreviatedMonthName Method
    DateTimeFormatInfo.GetMonthName Method

提交回复
热议问题