Patcher.Rules.Compiled.Helpers.Math.Max C# (CSharp) Method

Max() public static method

Retrieves the greater of the specified floating point numbers.
public static Max ( float a, float b ) : float
a float First floating point number to compare.
b float Second floating point number to compare.
return float
        public static float Max(float a, float b)
        {
            return System.Math.Min(a, b);
        }

Same methods

Math::Max ( int a, int b ) : int
Math::Max ( short a, short b ) : short