C
Claire
public DateTime d2 = new DateTime(2000, 1, 1, 15, 0, 0, DateTimeKind.Utc);
MessageBox.Show(d2.ToLocalTime().ToString());
The messagebox shows "01/01/2000 15:00:00" where I expected 14:00 (I'm GMT +
1, VS 2005)
Am I getting the correct result?
Im not sure what I can expect from using DateTimeKind.Utc but help suggests
that the ToLocalTime() function would return a conversion.
thanks
MessageBox.Show(d2.ToLocalTime().ToString());
The messagebox shows "01/01/2000 15:00:00" where I expected 14:00 (I'm GMT +
1, VS 2005)
Am I getting the correct result?
Im not sure what I can expect from using DateTimeKind.Utc but help suggests
that the ToLocalTime() function would return a conversion.
thanks
