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

Adds two Byte values.

Parameters
ParameterDescription
aLeft operand.
bRight operand.
Returns

a+b.

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