Click or drag to resize
MathMin Method (Int32, Int32)
Returns the smaller of two 32-bit signed integers.

Namespace: System
Assembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax
C#
public static int Min(
	int val1,
	int val2
)

Parameters

val1
Type: SystemInt32
The first of two 32-bit signed integers to compare.
val2
Type: SystemInt32
The second of two 32-bit signed integers to compare.

Return Value

Type: Int32
Parameter val1 or val2, whichever is smaller.
See Also