代码如下:PostMsg_Net.PostMsg postMsg1 = new PostMsg_Net.PostMsg();
DateTime dt1 = DateTime.Now;
postMsg1.GetReport();
DateTime dt2 = DateTime.Now;
TimeSpan t = DateTime.Now.Subtract(dt1);
int tt = Convert.ToInt32(t.Milliseconds);第一次执行,tt=460
第二次执行,tt=15
第三次执行,tt=0
第四次执行,tt=0
   ……  
第N次执行,tt=0   
为什么tt一直在减少,最后为0,这显然是不正确,期望的结果,应该每次是460左右的数.