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 meth
if (a > date1 && a < date2)
Between
There is not, but if you obey number line formatting per Code Complete, the raw code looks simpler:
if((lowDate < a) && (a < highDate))