Simply awesomeThe #1 ASP/ASP.NET Developer Community

StringBuilder.Append Method ( Char, Int32 )

System.Text Namespace   StringBuilder Class


Appends a specified number of copies of the string representation of a Unicode character to the end of this instance.

[ VB ]
<Serializable>
Overloads Public Function Append ( _
   ByVal value As Char, _
   ByVal repeatCount As Integer _
) As StringBuilder

[ C# ]
[Serializable]
public StringBuilder Append ( 
   char value,
   int repeatCount
);

[ C++ ]
[Serializable]
public: StringBuilder* Append ( 
   __wchar_t value,
   int repeatCount
);

[ JScript ]
public Serializable
function Append ( 
   value : Char,
   repeatCount : int
) : StringBuilder;

Parameters

value
The character to append.
repeatCount
The number of times to append value.

Return Value

A reference to this instance after the append operation has occurred.

Remarks

The capacity is adjusted as needed.

See Also

StringBuilder Members   StringBuilder.Append Overload List   Char


Previous page Back to top Next page

Check out related books at Amazon

© 2025 Reynald Nuñez and asp.net.ph. All rights reserved.

If you have any question, comment or suggestion
about this site, please send us a note