本文介绍了是否有日期时间之间在C#中,就像SQL呢?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在C#中的DateTime之间是否存在?我知道我可以做简单的检查与如果(A>日期1&放大器;&安培; A< DATE2)但我试图找到之间的方法。

Is there between DateTime in C# ? I know I can do simple check with if (a > date1 && a < date2) but I was trying to find Between method.

推荐答案

有没有一个之间的功能,但应该很容易够添加一个

There is not a Between function but should be easy enough to add one

public static bool Between(DateTime input, DateTime date1, DateTime date2)
{
    return (input > date1 && input < date2);
}

这篇关于是否有日期时间之间在C#中,就像SQL呢?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-24 13:22