我只是試圖使用DateTime
結構將1到12之間的整數轉換爲abbrieviated月份名稱。將月份int轉換爲月份名稱
這裏是我的嘗試:
DateTime getMonth = DateTime.ParseExact(Month.ToString(),
"M", CultureInfo.CurrentCulture);
return getMonth.ToString("MMM");
但是我得到了FormatException
第一線,因爲該字符串不是一個有效的DateTime
。誰能告訴我如何做到這一點?
'GetAbbreviatedMonthName()'似乎是適當的。 – 2011-06-09 00:43:54
與此相反的是什麼?輸入月份名稱並取回數字? – 2016-10-27 13:56:39
'int month = DateTime.ParseExact(MonthNameValue,「MMMM」,CultureInfo.CurrentCulture).Month' – CharithJ 2016-10-28 02:55:53