I have a function that converts ticks to time_t format
long ticks = DateTime.Now.Ticks; long tt = GetTimeTSecondsFrom(ticks); long GetTimeTSecondsFrom(long ticks) { DateTime epoch = new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc); return (long) (new DateTime(ticks) - epoch).TotalSeconds; }
Now I am confused how to convert it back to ticks using some mathematical formula, not using a function.
Any suggestions...??
thanks
Let me take a general example and explain. DateTime.Now.Ticks gives me a value of 633921719670980000, which is in tick
then I convert this to time_t with the above function and get tt = 1256575167
now i want to convert this back to 633921719670980000. for this i need a formula
source share