- 计算时间差用TimeSpan 函数:两个时间相减,得到一个 TimeSpan 实例。
- 经典代码如下:
public partial class Frm_Main : Form
{
public Frm_Main()
{
InitializeComponent();
}
private DateTime G_DateTime_First,//定义两个时间字段
G_DateTime_Second;
private void btn_First_Click(object sender, EventArgs e)
{
G_DateTime_First = DateTime.Now;//为时间字段赋值
lab_first.Text = "系统时间:" +//显示时间
G_DateTime_First.ToString(
"yyyy年M月d日 H时m分s秒 fff毫秒");
}
private void btn_Second_Click(object sender, EventArgs e)
{
G_DateTime_Second = DateTime.Now;//为时间字段赋值
lab_second.Text = "系统时间:" +//显示时间
G_DateTime_Second.ToString(
"yyyy年M月d日 H时m分s秒 fff毫秒");
}
private void btn_Result_Click(object sender, EventArgs e)
{
TimeSpan P_timespan_temp =//计算两个时间的时间间隔
G_DateTime_First > G_DateTime_Second ?
G_DateTime_First - G_DateTime_Second :
G_DateTime_Second - G_DateTime_First;
lab_result.Text = string.Format(//显示时间间隔
"间隔时间:{0}天{1}时{2}分{3}秒 {4}毫秒",
P_timespan_temp.Days, P_timespan_temp.Hours,
P_timespan_temp.Minutes, P_timespan_temp.Seconds,
P_timespan_temp.Milliseconds);
}
}
如上代码所述:
- TimeSpan (Int32, Int32, Int32, Int32, Int32) 将新的 TimeSpan 初始化为指定的天数、小时数、分钟数、秒数和毫秒数。
- 涵盖的属性有:
- Days:返回用天数计算的TimeSpan值。
- Hours:返回用小时计算的TimeSpan值 。
- Minutes:返回用分钟计算的TimeSpan值。
- Seconds:返回用秒计算的TimeSpan值。
- Milliseconds:返回用毫秒计算的TimeSpan值。
- 界面效果示例: