码迷,mamicode.com
首页 > 其他好文 > 详细

循环取月的三位英语名 Jan Feb

时间:2015-02-05 23:07:36      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:

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);
}

循环取月的三位英语名 Jan Feb

标签:

原文地址:http://www.cnblogs.com/fengwenit/p/4276074.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!