klyn.SByte.operator-
method
public native static operator-( readonly a as SByte, readonly b as SByte ) as SByte
Description

Subtracts one SByte value from another.

Parameters
ParameterDescription
aLeft operand.
bRight operand.
Returns

a-b.

Example
assert SByte(10) - SByte(3) == SByte(7)