F
fososs
Hi all,
Do you know any other way how to convert DateTime.Ticks (in Int64) to
DateTime? I m using this way...
Int64 AnyTicks = 633195783803593750; //for example
DateTime.MinValue.AddMilliseconds(AnyTicks/10000)
you can prove it by typing of this....
DateTime.MinValue.AddMilliseconds(DateTime.Now.Ticks / 10000)
Best Regards
Thanks
Do you know any other way how to convert DateTime.Ticks (in Int64) to
DateTime? I m using this way...
Int64 AnyTicks = 633195783803593750; //for example
DateTime.MinValue.AddMilliseconds(AnyTicks/10000)
you can prove it by typing of this....
DateTime.MinValue.AddMilliseconds(DateTime.Now.Ticks / 10000)
Best Regards
Thanks