我使用以下 c# 语法从月份获取月份名称,但我得到August我只想要Aug..
August
Aug
System.Globalization.DateTimeFormatInfo mfi = new System.Globalization.DateTimeFormatInfo(); string strMonthName = mfi.GetMonthName(8).ToString();
任何建议…
对于短月份名称,请使用:
string monthName = new DateTime(2010, 8, 1) .ToString("MMM", CultureInfo.InvariantCulture);
对于西班牙语(“es”)文化的长/完整月份名称
string fullMonthName = new DateTime(2015, i, 1).ToString("MMMM", CultureInfo.CreateSpecificCulture("es"));