klyn.Byte.operator+
method
public native static operator+( readonly a as Byte, readonly b as Byte ) as Byte
Description

Adds two Byte values.

Parameters
  • a Left operand.
  • b Right operand.
Returns

a+b.

Example
assert Byte(10) + Byte(3) == Byte(13)