Simply awesomeThe #1 ASP/ASP.NET Developer Community

StringBuilder.Append Method

System.Text Namespace   StringBuilder Class


Appends the string representation of a specified object to the end of this instance.

Overload List

1. Appends the string representation of a specified Boolean value to the end of this instance.

[ VB ] Overloads Public Function Append ( Boolean ) As StringBuilder

[ C# ] public StringBuilder Append ( bool );

[ C++ ] public: StringBuilder* Append ( bool );

[ JScript ] public function Append ( Boolean ) : StringBuilder;

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

[ VB ] Overloads Public Function Append ( Byte ) As StringBuilder

[ C# ] public StringBuilder Append ( byte );

[ C++ ] public: StringBuilder* Append ( unsigned char );

[ JScript ] public function Append ( Byte ) : StringBuilder;

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

[ VB ] Overloads Public Function Append ( Char ) As StringBuilder

[ C# ] public StringBuilder Append ( char );

[ C++ ] public: StringBuilder* Append ( __wchar_t );

[ JScript ] public function Append ( Char ) : StringBuilder;

4. Appends the string representation of the Unicode characters in a specified array to the end of this instance.

[ VB ] Overloads Public Function Append ( Char ( ) ) As StringBuilder

[ C# ] public StringBuilder Append ( char [ ] );

[ C++ ] public: StringBuilder* Append ( __wchar_t __gc [ ] );

[ JScript ] public function Append ( Char [ ] ) : StringBuilder;

5. Appends the string representation of a specified decimal number to the end of this instance.

[ VB ] Overloads Public Function Append ( Decimal ) As StringBuilder

[ C# ] public StringBuilder Append ( decimal );

[ C++ ] public: StringBuilder* Append ( Decimal );

[ JScript ] public function Append ( Decimal ) : StringBuilder;

6. Appends the string representation of a specified double-precision floating-point number to the end of this instance.

[ VB ] Overloads Public Function Append ( Double ) As StringBuilder

[ C# ] public StringBuilder Append ( double );

[ C++ ] public: StringBuilder* Append ( double );

[ JScript ] public function Append ( double ) : StringBuilder;

7. Appends the string representation of a specified 16-bit signed integer to the end of this instance.

[ VB ] Overloads Public Function Append ( Short ) As StringBuilder

[ C# ] public StringBuilder Append ( short );

[ C++ ] public: StringBuilder* Append ( short );

[ JScript ] public function Append ( Int16 ) : StringBuilder;

8. Appends the string representation of a specified 32-bit signed integer to the end of this instance.

[ VB ] Overloads Public Function Append ( Integer ) As StringBuilder

[ C# ] public StringBuilder Append ( int );

[ C++ ] public: StringBuilder* Append ( int );

[ JScript ] public function Append ( int ) : StringBuilder;

9. Appends the string representation of a specified 64-bit signed integer to the end of this instance.

[ VB ] Overloads Public Function Append ( Long ) As StringBuilder

[ C# ] public StringBuilder Append ( long );

[ C++ ] public: StringBuilder* Append ( __int64 );

[ JScript ] public function Append ( long ) : StringBuilder;

10. Appends the string representation of a specified object to the end of this instance.

[ VB ] Overloads Public Function Append ( Object ) As StringBuilder

[ C# ] public StringBuilder Append ( object );

[ C++ ] public: StringBuilder* Append ( Object* );

[ JScript ] public function Append ( Object ) : StringBuilder;

11. Appends the string representation of a specified 8-bit signed integer to the end of this instance. This method is not CLS-compliant.

[ VB ] Overloads Public Function Append ( SByte ) As StringBuilder

[ C# ] public StringBuilder Append ( sbyte );

[ C++ ] public: StringBuilder* Append ( char );

[ JScript ] public function Append ( SByte ) : StringBuilder;

12. Appends the string representation of a specified single-precision floating-point number to the end of this instance.

[ VB ] Overloads Public Function Append ( Single ) As StringBuilder

[ C# ] public StringBuilder Append ( float );

[ C++ ] public: StringBuilder* Append ( float );

[ JScript ] public function Append ( float ) : StringBuilder;

13. Appends a copy of the specified string to the end of this instance.

[ VB ] Overloads Public Function Append ( String ) As StringBuilder

[ C# ] public StringBuilder Append ( string );

[ C++ ] public: StringBuilder* Append ( String* );

[ JScript ] public function Append ( String ) : StringBuilder;

14. Appends the string representation of a specified 16-bit unsigned integer to the end of this instance. This method is not CLS-compliant.

[ VB ] Overloads Public Function Append ( UInt16 ) As StringBuilder

[ C# ] public StringBuilder Append ( ushort );

[ C++ ] public: StringBuilder* Append ( unsigned short );

[ JScript ] public function Append ( UInt16 ) : StringBuilder;

15. Appends the string representation of a specified 32-bit unsigned integer to the end of this instance. This method is not CLS-compliant.

[ VB ] Overloads Public Function Append ( UInt32 ) As StringBuilder

[ C# ] public StringBuilder Append ( uint );

[ C++ ] public: StringBuilder* Append ( unsigned int );

[ JScript ] public function Append ( UInt32 ) : StringBuilder;

16. Appends the string representation of a specified 64-bit unsigned integer to the end of this instance. This method is not CLS-compliant.

[ VB ] Overloads Public Function Append ( UInt64 ) As StringBuilder

[ C# ] public StringBuilder Append ( ulong );

[ C++ ] public: StringBuilder* Append ( unsigned __int64 );

[ JScript ] public function Append ( UInt64 ) : StringBuilder;

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

[ VB ] Overloads Public Function Append ( Char, Integer ) As StringBuilder

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

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

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

18. Appends the string representation of a specified subarray of Unicode characters to the end of this instance.

[ VB ] Overloads Public Function Append ( Char ( ), Integer, Integer ) As StringBuilder

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

[ C++ ] public: StringBuilder* Append ( __wchar_t __gc [ ], int, int );

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

19. Appends a copy of a specified substring to the end of this instance.

[ VB ] Overloads Public Function Append ( String, Integer, Integer ) As StringBuilder

[ C# ] public StringBuilder Append ( string, int, int );

[ C++ ] public: StringBuilder* Append ( String*, int, int );

[ JScript ] public function Append ( String, int, int ) : StringBuilder;

See Also

StringBuilder Members


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