public native static operator*( readonly first as String, readonly count as UInt ) as String
Repeats a string a given number of times.
| Parameter | Description |
|---|---|
first | Source string. |
count | Number of repetitions. |
A new String with repeated content.
assert "ha" * 2u == "haha"