- using System;
-
- namespace ConsoleApplication1
- {
- class Program
- {
- static void Main(string[] args)
- {
- DateTime dt = new DateTime(2013, 4, 1, 23, 59, 2, 999);
-
- Console.WriteLine(dt);
- Console.WriteLine("年 → " + dt.Year);
- Console.WriteLine("月 → " + dt.Month);
- Console.WriteLine("日 → " + dt.Day);
- Console.WriteLine("時 → " + dt.Hour);
- Console.WriteLine("分 → " + dt.Minute);
- Console.WriteLine("秒 → " + dt.Second);
- Console.WriteLine("ミリ秒 → " + dt.Millisecond);
-
- Console.ReadLine();
- }
- }
- }
|