Java.Lang.Math.Min Method
Returns the most negative (closest to negative infinity) of the two arguments.

Syntax

[Android.Runtime.Register("min", "(FF)F", "")]
public static float Min (float f1, float f2)

Parameters

f1
Documentation for this section has not yet been entered.
f2
Documentation for this section has not yet been entered.

Returns

Documentation for this section has not yet been entered.

Remarks

Returns the most negative (closest to negative infinity) of the two arguments.

Special cases:

  • min(NaN, (anything)) = NaN
  • min((anything), NaN) = NaN
  • min(+0.0, -0.0) = -0.0
  • min(-0.0, +0.0) = -0.0

[Android Documentation]

Requirements

Namespace: Java.Lang
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 1