gpt4 book ai didi

c# - 从月份编号获取月份名称

转载 作者:IT王子 更新时间:2023-10-29 03:29:13 26 4
gpt4 key购买 nike

Possible Duplicate:
How to get the MonthName in c#?

我使用以下 C# 语法从月份号获取月份名称,但我得到了 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"));

关于c# - 从月份编号获取月份名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3184121/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com