G
Guest
Hi Guys,
I have create a Date Object, with my specified date.
let me see:
DateTime dt = new DateTime(2007,03,03,07,30,00);
and I get the long ticks = dt.Ticks;
however when I create another DateTime instance by using that ticks,
DateTime clone = new DateTime(ticks);
It only return me year,month,day, the hour has been changed 12,and min is 00,
what is the issue?
Thanks
I have create a Date Object, with my specified date.
let me see:
DateTime dt = new DateTime(2007,03,03,07,30,00);
and I get the long ticks = dt.Ticks;
however when I create another DateTime instance by using that ticks,
DateTime clone = new DateTime(ticks);
It only return me year,month,day, the hour has been changed 12,and min is 00,
what is the issue?
Thanks