Returns the larger of two numbers.
[Visual Basic] Overloads Public Shared Function Max( _ ByVal a As Single, _ ByVal b As Single _ ) As Single [C#] public static float Max( float a, float b ); [C++] public: static float Max( float a, float b ); [JScript] public static function Max( a : float, b : float ) : float;
Returns the maximum of a and b.
Math Class | Math Members | System Namespace | Math.Max Overload List