SByte - Max

Returns the larger of two 8-bit signed integers.

Try it

public static void Main()
{
    sbyte  x = 7,   y = 57;
	
	// C# Extension Method: SByte - Max
	Console.WriteLine("The maximum of {0} and {1} is {2}.", x, y, x.Max(y));
}

View Source
using System;

public static partial class Extensions
{
    /// <summary>
    ///     Returns the larger of two 8-bit signed integers.
    /// </summary>
    /// <param name="val1">The first of two 8-bit signed integers to compare.</param>
    /// <param name="val2">The second of two 8-bit signed integers to compare.</param>
    /// <returns>Parameter  or , whichever is larger.</returns>
    public static SByte Max(this SByte val1, SByte val2)
    {
        return Math.Max(val1, val2);
    }
}