Click or drag to resize
MathAbs Method (Int16)
Returns the absolute value of a 16-bit signed integer.

Namespace: System
Assembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax
C#
public static short Abs(
	short value
)

Parameters

value
Type: SystemInt16
A number that is greater than MinValue, but less than or equal to MaxValue.

Return Value

Type: Int16
A 16-bit signed integer, x, such that 0 ≤ x ≤MaxValue.
Exceptions
ExceptionCondition
OverflowExceptionvalue equals MinValue.
See Also