循环取月的三位英语名 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);
}
原文地址:https://www.cnblogs.com/fengwenit/p/4276074.html