bool isToday(int y, int m, int d) { var n = DateTime.now(); return (n.year == y && n.month == m && n.day == d); }