public StringBuilderSync(size as UInt = 256):
Creates a new synchronized builder.
| Parameter | Description |
|---|---|
size | Reserved capacity hint forwarded to the underlying builder. |
builder = StringBuilderSync(64u)
builder.append("Klyn")
print(builder.toString())