目录语法参数返回值示例比较 DateTime 的两个实例,并返回它们相对值的指示。 语法 public static int Compare ( DateTime t1,
比较 DateTime 的两个实例,并返回它们相对值的指示。
public static int Compare (
DateTime t1,
DateTime t2
)
t1
第一个 DateTime。
t2
第二个 DateTime。
有符号数字,指示 t1 和 t2 的相对值。
值类型 | 条件 |
---|---|
小于零 | t1 小于 t2。 |
零 | t1 等于 t2。 |
大于零 | t1 大于 t2。 |
在比较 DateTime 对象之前,请确保这些对象表示的是同一时区内的时间
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
DateTime t1 = DateTime.Parse("2011-2-2");
DateTime t2 = DateTime.Parse("2011-3-1");
if (DateTime.Compare(t1, t2) > 0)
Console.WriteLine("t1 > t2");
if (DateTime.Compare(t1, t2) == 0)
Console.WriteLine("t1 == t2");
if (DateTime.Compare(t1, t2) < 0)
Console.WriteLine("t1 < t2");
}
}
}
运行结果:
t1 < t2
到此这篇关于C#中DateTime.Compare()比较时间大小的文章就介绍到这了,更多相关C# DateTime.Compare()比较时间内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!
--结束END--
本文标题: C#中DateTime.Compare()比较时间大小
本文链接: https://lsjlt.com/news/211300.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0