Int16 - Between

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

Try it

public static void Main()
{
	Int16 searchVal = 7;
	
	Int16 minVal = 10;
	
	Int16 maxVal = 32;

    // C# Extension Method: Int16 - Between
    if(searchVal.Between(minVal, maxVal))
	{
		Console.WriteLine("{0} is between {1} and {2}", searchVal, minVal, maxVal);
	}
	else
	{
		Console.WriteLine("{0} is not between {1} and {2}", searchVal, minVal, maxVal);
	}
}

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 Int16 @this, Int16 minValue, Int16 maxValue)
    {
        return minValue.CompareTo(@this) == -1 && @this.CompareTo(maxValue) == -1;
    }
}