不断整理中。。。
获取当前时间
DateTime.Now.ToString("d") ;//获取到的日期格式为eg :2013/11/14时间格式只取年月日
DateTime.Now.ToShortDateString(); //2013/11/14获取年份/月份
DateTime.Now.Year.ToString();2013DateTime.Now.Month.ToString();08时间比较
DateTime.Now.CompareTo(data.GDRQ)>=0时间搓与日期相互转换
1.日期转时间搓public static DateTime DateTimeToInt(DateTime datetime){ return (datetime.ToUniversalTime().Ticks - new DateTime(1970, 1, 1).Ticks) / 10000000}2.时间搓转日期public static DateTime IntToDateTime(int timestamp){ return TimeZone.CurrentTimeZone.ToLocalTime(new DateTime(1970,1,1)).AddSeconds(timestamp);}