有没有最好的方法将整数转换为 .net 中的月份名称?

显然我可以启动一个日期时间来将它串起来并从中解析月份名称。这似乎是在浪费时间。

最佳答案

从 DateTimeFormatInfo 尝试 GetMonthName

http://msdn.microsoft.com/en-us/library/system.globalization.datetimeformatinfo.getmonthname.aspx

你可以这样做:

CultureInfo.CurrentCulture.DateTimeFormat.GetMonthName(1);

关于.net - 在 C# 中将整数转换为月份名称的最佳方法?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/218908/

10-13 07:48