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