摘要: public static DateTime FileTime2Date(System.Runtime.InteropServices.ComTypes.FILETIME time) { ulong high = (ulong)time.dwHighDateTime; DateTime dt; unchecked { int low = time.dwLowDateTime; uint uLow = (uint)low; high = high << 32; dt = DateTime... 阅读全文
posted @ 2012-07-21 14:47 waterfrost 阅读(300) 评论(0) 推荐(0) 编辑