M
madhur
Hello
If I create a DateTime instance like this :
DateTime d=DateTime.Now();
And then
d.AddDays(3);
The 3 days doesnt get added to it. But If I do like this :
DateTime d=DateTime.Now.AddDays(4);
The days gets added correctly.
Can anyone explain me the behaviour ??
Madhur
If I create a DateTime instance like this :
DateTime d=DateTime.Now();
And then
d.AddDays(3);
The 3 days doesnt get added to it. But If I do like this :
DateTime d=DateTime.Now.AddDays(4);
The days gets added correctly.
Can anyone explain me the behaviour ??
Madhur