/ Published in: C#
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
//from System.DateTime to System.Runtime.InteropServices.ComTypes.FILETIME ///////////////////////////////////////////////////////////////// long hFT1 = DateTime.Now.ToFileTime(); ft.dwLowDateTime = (int)(hFT1 & 0xFFFFFFFF); ft.dwHighDateTime = (int)(hFT1 >> 32);
URL: http://windows-tech.info/1/dc66674e398c3e66.php