klyn.String.operator+
method
public native static operator+( readonly first as String, readonly second as String ) as String
Description

Concatenates two strings.

Parameters
  • first Left string.
  • second Right string.
Returns

A new String containing the concatenation.

Example
assert "K" + "lyn" == "Klyn"