DateTimeOffset - Between

A T extension method that check if the value is between (exclusif) the minValue and maxValue.

Try it

public static void Main()
{
    DateTimeOffset minDate = new DateTimeOffset(2007, 9, 1, 6, 45, 0, new TimeSpan(-7, 0, 0));

    DateTimeOffset maxDate = new DateTimeOffset(2007, 11, 1, 6, 45, 0, new TimeSpan(-6, 0, 0));


    DateTimeOffset searchDate = new DateTimeOffset(2007, 10, 1, 8, 45, 0, new TimeSpan(-5, 0, 0));

    // C# Extension Method: DateTimeOffset - Between
	if(searchDate.Between(minDate, maxDate))
	{
		Console.WriteLine("{0} is between {1} --- {2}", searchDate, minDate, maxDate);
	}
	else
	{
		Console.WriteLine("{0} is not between {1} --- {2}", searchDate, minDate, maxDate);
	}
}

View Source
using System;

public static partial class Extensions
{
    /// <summary>
    ///     A T extension method that check if the value is between (exclusif) the minValue and maxValue.
    /// </summary>
    /// <param name="this">The @this to act on.</param>
    /// <param name="minValue">The minimum value.</param>
    /// <param name="maxValue">The maximum value.</param>
    /// <returns>true if the value is between the minValue and maxValue, otherwise false.</returns>
    /// ###
    /// <typeparam name="T">Generic type parameter.</typeparam>
    public static bool Between(this DateTimeOffset @this, DateTimeOffset minValue, DateTimeOffset maxValue)
    {
        return minValue.CompareTo(@this) == -1 && @this.CompareTo(maxValue) == -1;
    }
}