NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

StringBuilder.Append (Char, Int32)

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;

Parameters

value
the character to be appended.
repeatCount
the number of times to append that character.

Return Value

A reference to the current StringBuilder with repeatCount copies of value appended.

Remarks

The capacity is adjusted as needed.

See Also

StringBuilder Class | StringBuilder Members | System.Text Namespace | StringBuilder.Append Overload List | Char