本文介绍了.Net CultureInfo月名称返回一个额外的空字符串的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有以下代码来获取月份名称列表:
I have the following code to get a list of Month names:
var monthNames = System.Globalization.CultureInfo.CurrentCulture.DateTimeFormat.MonthNames;
由于某种原因,这将继续返回附加的空字符串值以及月份名称:
For some reason, this keeps returning an additional empty string value along with the Month names:
我正在使用Xamarin Studio。有人遇到过吗?
I am using Xamarin Studio. Anyone else encounter this before?
推荐答案
某些日历,例如或有13个月。
Some calendars like TaiwanLunisolarCalendar
or KoreanLunisolarCalendar
have 13 months.
在12个月的日历中,数组的第13个元素是一个空字符串。
In a 12-month calendar, the 13th element of the array is an empty string.
这篇关于.Net CultureInfo月名称返回一个额外的空字符串的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!