NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Math.Min (Single, Single)

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;

Parameters

a
The first of two values to be compared.
b
The second of two values to be compared.

Return Value

Returns the minimum of a and b.

See Also

Math Class | Math Members | System Namespace | Math.Min Overload List