C# 使用定时任务 之 获取当前时间及格式化串

1、获取当前时间

System.DataTime current = System.DateTime.Now;

2、时间间隔

TimeSpan ts1=newTimeSpan(DateTime1.Ticks); 
TimeSpan ts2=newTimeSpan(DateTime2.Ticks);  
TimeSpan ts=ts1.Subtract(ts2).Duration();  
dateDiff=ts.Days.ToString()+"天" +ts.Hours.ToString()+"小时" +ts.Minutes.ToString()+"分钟" +ts.Seconds.ToString()+"秒"; 

3、C#日期时间格式化

C#日期时间格式化

参考

http://www.haogongju.net/art/930107

http://www.25yi.com/wangyesheji/shijianjisuan-179/

http://www.bianceng.cn/Programming/csharp/200906/11382.htm

http://www.cnblogs.com/emanlee/archive/2008/01/20/1046022.html

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