Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mono / tests / time.cs
1 using System;
2
3 class time_test {
4         
5         static int Main ()
6         {
7                 DateTime uepoch = new DateTime (1970, 1, 1);
8
9                 if (uepoch.Ticks != 621355968000000000)
10                         return 1;
11                                 
12                 TimeSpan ts = new TimeSpan (1, 0, 0);
13                 Console.WriteLine (ts.Ticks);
14
15                 return 0;
16         }
17 }