StringBuilder.Append Method (UInt16)
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Updated: January 2011
Appends the string representation of a specified 16-bit unsigned integer to the end of this instance.
This API is not CLS-compliant.
Namespace: System.Text
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
<CLSCompliantAttribute(False)> _
Public Function Append ( _
value As UShort _
) As StringBuilder
[CLSCompliantAttribute(false)]
public StringBuilder Append(
ushort value
)
Parameters
- value
Type: System.UInt16
The value to append.
Return Value
Type: System.Text.StringBuilder
A reference to this instance after the append operation has completed.
Exceptions
Exception | Condition |
---|---|
ArgumentOutOfRangeException | Enlarging the value of this instance would exceed its maximum capacity. |
Remarks
The Append 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, as the following example illustrates.
Dim sb As New System.Text.StringBuilder("The range of a 16-bit unsigned integer: ")
sb.Append(UInt16.MinValue).Append(" to ").Append(UInt16.MaxValue)
outputBlock.Text += sb.ToString() + vbCrLf
' The example displays the following output:
' The range of a 16-bit unsigned integer: 0 to 65535
System.Text.StringBuilder sb = new
System.Text.StringBuilder("The range of a 16-bit unsigned integer: ");
sb.Append(UInt16.MinValue).Append(" to ").Append(UInt16.MaxValue);
outputBlock.Text += sb.ToString() + Environment.NewLine;
// The example displays the following output:
// The range of a 16-bit unsigned integer: 0 to 65535
The Append method calls the UInt16.ToString(IFormatProvider) method to get the string representation of value. To control the formatting of value, call the AppendFormat method.
The capacity of this instance is adjusted as needed.
Version Information
Silverlight
Supported in: 5, 4, 3
Silverlight for Windows Phone
Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0
XNA Framework
Supported in: Xbox 360, Windows Phone OS 7.0
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.
Change History
Date |
History |
Reason |
---|---|---|
January 2011 |
Expanded the Remarks section and removed the example. |
Customer feedback. |