计算两个日期相差多少毫秒
static int daysBetweenMillSecond(DateTime a, DateTime b) { int v = a.millisecondsSinceEpoch - b.millisecondsSinceEpoch; return v; }