Click or drag to resize
MathMin Method (UInt64, UInt64)
Returns the smaller of two 64-bit unsigned integers.

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

Parameters

val1
Type: SystemUInt64
The first of two 64-bit unsigned integers to compare.
val2
Type: SystemUInt64
The second of two 64-bit unsigned integers to compare.

Return Value

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