计算两个时间之间的毫秒差

DateTime start=DateTime.Now;
DateTime end=DateTime.Now;
TimeSpan ts=end-start;
ts.TotalMilliseconds.ToString();

你可能感兴趣的:(C#)