Popular Posts
DNS SERVER LIST Google 8.8.8.8 8.8.4.4 TWNIC 192.83.166.11 211.72.210.250 HiNet 168.95.1.1 168.95.192.1 Seednet 北區 DNS (台北, 桃園, 新竹, 宜蘭, 花蓮, 苗栗) 139.... write 語法: write at [/][<pos>][(<len>)] output 用法: write 'Bruce'. " 輸出常數 Bruce data CNAME(10) value... Regex (Regular Expression) tool Eclipse Regular Expression Tester Java正規表示式工具-Eclipse GUI介面 [Visual Studio 2010] 好用的 Regex 輔助工具
Stats
Diff Time
DateTime from = new DateTime(2011, 1, 7);
DateTime to = DateTime.Now;
TimeSpan ts = to - from;

Console.WriteLine("start time : {0:yyyy/MM/dd HH:mm:ss}", from);
Console.WriteLine("end time   : {0:yyyy/MM/dd HH:mm:ss}", to);
Console.WriteLine("time diff  : {0}", ts);
Console.WriteLine("month diff   : {0}", (to.Month - from.Month) + 12 * (to.Year - from.Year));
Console.WriteLine("day diff     : {0}", ts.TotalDays);
Console.WriteLine("hour difff   : {0}", ts.TotalHours);
Console.WriteLine("minutes diff : {0}", ts.TotalMinutes);
Console.WriteLine("second diff  : {0}", ts.TotalSeconds);