klyn.Short.operator*
method
public native static operator*( readonly a as Short, readonly b as Short ) as Short
Description

Multiplies two Short values.

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

a*b.

Example
assert Short(10) * Short(3) == Short(30)