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
  • a Left operand.
  • b Right operand.
Returns

a-b.

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