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

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

Parameters

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

Return Value

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