S
shapper
Hello,
I tried the following:
String dts = String.Format("{0}-{1}-{2}", DateTime.MinValue.Day,
DateTime.MinValue.Month, DateTime.MinValue.Year);
DateTime dt = DateTime.Parse(dts);
dts becomes "1-1-1" but dt becomes "01-01-2001".
Shouldn't the minimum year be "0001" which is what I get when i do
DateTime dt = new DateTime();
Thanks,
Miguel
I tried the following:
String dts = String.Format("{0}-{1}-{2}", DateTime.MinValue.Day,
DateTime.MinValue.Month, DateTime.MinValue.Year);
DateTime dt = DateTime.Parse(dts);
dts becomes "1-1-1" but dt becomes "01-01-2001".
Shouldn't the minimum year be "0001" which is what I get when i do
DateTime dt = new DateTime();
Thanks,
Miguel