Appends multiple copies of a character to the end of the current StringBuilder.
[Visual Basic] Overloads Public Function Append( _ ByVal value As Char, _ ByVal repeatCount As Integer _ ) As StringBuilder [C#] public StringBuilder Append( char value, int repeatCount ); [C++] public: StringBuilder* Append( __wchar_t value, int repeatCount ); [JScript] public function Append( value : Char, repeatCount : int ) : StringBuilder;
A reference to the current StringBuilder with repeatCount copies of value appended.
The capacity is adjusted as needed.
StringBuilder Class | StringBuilder Members | System.Text Namespace | StringBuilder.Append Overload List | Char