循环取月的三位英语名 Jan Feb
CultureInfo ci = new CultureInfo("en-US");
DateTime now = DateTime.Now;
for (int i = 0; i < 12; i++)
{
string month = now.ToString("MMM",ci);
now = now.AddMonths(1);
}
CultureInfo ci = new CultureInfo("en-US");
DateTime now = DateTime.Now;
for (int i = 0; i < 12; i++)
{
string month = now.ToString("MMM",ci);
now = now.AddMonths(1);
}