Share via


Append Method (Byte)

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Appends the string representation of a specified 8-bit unsigned integer to this instance.

Namespace:  System.Text
Assembly:  mscorlib (in mscorlib.dll)

Syntax

'Declaration
Public Function Append ( _
    value As Byte _
) As StringBuilder
public StringBuilder Append(
    byte value
)
public:
StringBuilder^ Append(
    unsigned char value
)
member Append : 
        value:byte -> StringBuilder 
public function Append(
    value : byte
) : StringBuilder

Parameters

Return Value

Type: System.Text. . :: . .StringBuilder
A reference to this instance after the append operation has completed.

Remarks

The Append(Byte) method modifies the existing instance of this class; it does not return a new class instance. Because of this, you can call a method or property on the existing reference and you do not have to assign the return value to a StringBuilder object.

The Append(Byte) method calls the ToString(IFormatProvider) method to get the string representation of value for the current culture. To control the formatting of value, call the AppendFormat method.

The capacity of this instance is adjusted as needed.

.NET Framework Security

See Also

Reference

StringBuilder Class

Append Overload

System.Text Namespace