See Also: StringBuilder Members
A modifiable Java.Lang.ICharSequence for use in creating strings. This class is intended as a direct replacement of Java.Lang.StringBuffer for non-concurrent use; unlike StringBuffer this class is not synchronized.
For particularly complex string-building needs, consider Java.Util.Formatter.
The majority of the modification methods on this class return this so that method calls can be chained together. For example: new StringBuilder("a").append("b").append("c").toString().