2010-12-21 89 views
0

如何獲取以下數字以2位數字格式顯示?年2年格式

DateTime test = DateTime.Now; 
DateTimeFormatInfo dateTimeFormat = CultureInfo.GetCultureInfo("en-US").DateTimeFormat; 
Console.WriteLine(test.ToString(dateTimeFormat.ShortDatePattern,dateTimeFormat)); 
+3

警告!此問題的答案可能不符合Y2K標準。 :) – 2010-12-21 21:09:26

+0

@djacobsen,但直到我們得到一個時間機器時,這並不重要:-)我更擔心他們不會符合Y2.1K ... – driis 2010-12-21 21:58:02

回答

3

有做這個沒有標準格式,必須指定格式:

Console.WriteLine(test.ToString("M/d/yy",dateTimeFormat)); 
1
Console.WriteLine(test.ToString("yy"), dateTimeFormat);