Convert UNIX timestamp to .NET DateTime ticks in unmanaged code (without using .NET)
- by Adal
I need to "construct" .NET DateTime values in Python/C++.
How can I compute the number of ticks stored by DateTime starting from a UNIX timestamp?
A solution involving Win32 API calls it's ok (I believe FILETIME functions could help).