- TextBuilder Overview
- Common Methods
- Generating Files
- CSV
- JSON
- XML
- Email body
TextBuilder is a high-performance, mutable string buffer—ideal for heavy string manipulation without the overhead of repeated allocations - Reference type, unlike Text, making it efficient in loops and concatenations. - 1-based indexing, optimized for sequential Append, Insert, Remove, and Replace operations
- Append, AppendLine
- Insert(pos, text)
- Replace(old,new[,start,len])
- Remove(pos,len)
- Length(), MaxCapacity()
- ToText([start,len])