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:
I am using Xamarin Studio. Anyone else encounter this before?