C# DataTime Format

http://msdn.microsoft.com/zh-cn/library/system.datetime.toshorttimestring(v=VS.85) 

 

 

 

// This code example demonstrates the DateTime.ToLongDateString(), //  
// DateTime.ToLongTimeString(), DateTime.ToShortDateString(), and //  
// DateTime.ToShortTimeString() methods. using System; using  
// System.Threading; using System.Globalization; class Sample { public  
// static void Main() { string msg1 =  
// "The date and time patterns are defined in the DateTimeFormatInfo \n"  
// + "object associated with the current thread culture.\n"; //  
// Initialize a DateTime object.  
// Console.WriteLine("Initialize the DateTime object to May 16, 2001 3:02:15 AM.\n");  
// DateTime myDateTime = new System.DateTime(2001, 5, 16, 3, 2, 15); //  
// Identify the source of the date and time patterns.  
// Console.WriteLine(msg1); // Display the name of the current culture.  
// CultureInfo ci = Thread.CurrentThread.CurrentCulture;  
// Console.WriteLine("Current culture: \"{0}\"\n", ci.Name); // Display  
// the long date pattern and string.  
// Console.WriteLine("Long date pattern: \"{0}\"",  
// ci.DateTimeFormat.LongDatePattern);  
// Console.WriteLine("Long date string: \"{0}\"\n",  
// myDateTime.ToLongDateString()); // Display the long time pattern and  
// string. Console.WriteLine("Long time pattern: \"{0}\"",  
// ci.DateTimeFormat.LongTimePattern);  
// Console.WriteLine("Long time string: \"{0}\"\n",  
// myDateTime.ToLongTimeString()); // Display the short date pattern and  
// string. Console.WriteLine("Short date pattern: \"{0}\"",  
// ci.DateTimeFormat.ShortDatePattern);  
// Console.WriteLine("Short date string: \"{0}\"\n",  
// myDateTime.ToShortDateString()); // Display the short time pattern  
// and string. Console.WriteLine("Short time pattern: \"{0}\"",  
// ci.DateTimeFormat.ShortTimePattern);  
// Console.WriteLine("Short time string: \"{0}\"\n",  
// myDateTime.ToShortTimeString()); } } /* This code example produces  
// the following results: Initialize the DateTime object to May 16, 2001  
// 3:02:15 AM The date and time patterns are defined in the  
// DateTimeFormatInfo object associated with the current thread culture.  
// Current culture: "en-US" Long date pattern: "dddd, MMMM dd, yyyy"  
// Long date string: "Wednesday, May 16, 2001" Long time pattern:  
// "h:mm:ss tt" Long time string: "3:02:15 AM" Short date pattern:  
// "M/d/yyyy" Short date string: "5/16/2001" Short time pattern:  
// "h:mm tt" Short time string: "3:02 AM" */
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值