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

Namespace: System
Assembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax
C#
public static sbyte Max(
	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 larger.
See Also