public native static operator+( readonly first as String, readonly second as String ) as String
Concatenates two strings.
| Parameter | Description |
|---|---|
first | Left string. |
second | Right string. |
A new String containing the concatenation.
assert "K" + "lyn" == "Klyn"