BF2Statistics.IntExtensions.InRange C# (CSharp) Method

InRange() public static method

Returns whether this Int32 value is within the range of the specified values
public static InRange ( this input, int LowValue, int HighValue ) : bool
input this
LowValue int The low end of the scale
HighValue int The high end of the scale
return bool
        public static bool InRange(this int input, int LowValue, int HighValue)
        {
            return (input >= LowValue && input <= HighValue);
        }