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

Divides one SByte value by another.

Parameters
ParameterDescription
aDividend.
bDivisor.
Returns

The real quotient as a Double.

Throws
  • ZeroDivisionError if the divisor equals SByte(0) at runtime.
Example
assert SByte(9) / SByte(2) == 4.5