klyn.StringBuilder.operator[]
method
public operator[](position as UInt) as Char throws IndexException:
Description

Gets or sets one character by index.

Throws
  • IndexException if position is outside [0, length).
Example
builder = StringBuilder()
builder.append("Klyn")
builder[0u] = 'C'
print(builder[0u])