DateTime.Now is WRONG :)
David Logan <[email protected]>
| Newsgroups | gmane.comp.gnu.dotgnu.developer |
|---|---|
| Message-ID | <[email protected]> |
Hey guys, anyone know how come the DateTime class Now property returns the wrong time? David Logan [[email protected] temp]$ cscc -o tt.exe tt.cs [[email protected] temp]$ ilrun tt.exe;date 6/30/04 10:37:46 PM -5 Wed Jun 30 21:37:47 MDT 2004 [[email protected] temp]$ cat tt.cs class Test { static void Main() { System.Console.WriteLine(DateTime.Now); } } [[email protected] temp]$