J
Justin Shen
i wrote following code:
DateTime t1 = new DateTime( DateTime.Today.ToFileTime() );
Console.WriteLine(t1);
and got a output of:
0404-5-3 16:00:00
instead of 2004-5-3 16:00:00
why could this happen?
DateTime t1 = new DateTime( DateTime.Today.ToFileTime() );
Console.WriteLine(t1);
and got a output of:
0404-5-3 16:00:00
instead of 2004-5-3 16:00:00
why could this happen?