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 (Double, Double)

Returns the smaller of two numbers.

[Visual Basic]
Overloads Public Shared Function Min( _
   ByVal a As Double, _
   ByVal b As Double _
) As Double
[C#]
public static double Min(
   double a,
   double b
);
[C++]
public: static double Min(
   double a,
   double b
);
[JScript]
public static function Min(
   a : double,
   b : double
) : double;

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