C#比较两个时间大小_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > C#比较两个时间大小

C#比较两个时间大小

 2014/7/6 16:49:30  骄傲小公主  程序员俱乐部  我要评论(0)
  • 摘要:DateTimet1=Convert.ToDateTime("2012-12-3123:59:00");DateTimet2=Convert.ToDateTime("2013-1-100:01:00");TimeSpants=t2-t1;intss=Convert.ToInt32(ts.TotalMinutes);textBox1.Text=ss.ToString();
  • 标签:C#

            DateTime t1 = Convert.ToDateTime("2012-12-31 23:59:00");
            DateTime t2 = Convert.ToDateTime("2013-1-1 00:01:00");
            TimeSpan ts = t2 - t1;
            int ss = Convert.ToInt32(ts.TotalMinutes);
            textBox1.Text = ss.ToString();

发表评论
用户名: 匿名