Simply awesomeThe #1 ASP/ASP.NET Developer Community

StringBuilder.Insert Method

System.Text Namespace   StringBuilder Class


Inserts the string representation of a specified object into this instance at a specified character position.

Overload List

1. Inserts the string representation of a Boolean value into this instance at the specified character position.

[ VB ] Overloads Public Function Insert ( Integer, Boolean ) As StringBuilder

[ C# ] public StringBuilder Insert ( int, bool );

[ C++ ] public: StringBuilder* Insert ( int, bool );

[ JScript ] public function Insert ( int, Boolean ) : StringBuilder;

2. Inserts the string representation of a specified 8-bit unsigned integer into this instance at the specified character position.

[ VB ] Overloads Public Function Insert ( Integer, Byte ) As StringBuilder

[ C# ] public StringBuilder Insert ( int, byte );

[ C++ ] public: StringBuilder* Insert ( int, unsigned char );

[ JScript ] public function Insert ( int, Byte ) : StringBuilder;

3. Inserts the string representation of a specified Unicode character into this instance at the specified character position.

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

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

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

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

4. Inserts the string representation of a specified array of Unicode characters into this instance at the specified character position.

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

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

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

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

5. Inserts the string representation of a decimal number into this instance at the specified character position.

[ VB ] Overloads Public Function Insert ( Integer, Decimal ) As StringBuilder

[ C# ] public StringBuilder Insert ( int, decimal );

[ C++ ] public: StringBuilder* Insert ( int, Decimal );

[ JScript ] public function Insert ( int, Decimal ) : StringBuilder;

6. Inserts the string representation of a double-precision floating-point number into this instance at the specified character position.

[ VB ] Overloads Public Function Insert ( Integer, Double ) As StringBuilder

[ C# ] public StringBuilder Insert ( int, double );

[ C++ ] public: StringBuilder* Insert ( int, double );

[ JScript ] public function Insert ( int, double ) : StringBuilder;

7. Inserts the string representation of a specified 16-bit signed integer into this instance at the specified character position.

[ VB ] Overloads Public Function Insert ( Integer, Short ) As StringBuilder

[ C# ] public StringBuilder Insert ( int, short );

[ C++ ] public: StringBuilder* Insert ( int, short );

[ JScript ] public function Insert ( int, Int16 ) : StringBuilder;

8. Inserts the string representation of a specified 32-bit signed integer into this instance at the specified character position.

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

[ C# ] public StringBuilder Insert ( int, int );

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

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

9. Inserts the string representation of a 64-bit signed integer into this instance at the specified character position.

[ VB ] Overloads Public Function Insert ( Integer, Long ) As StringBuilder

[ C# ] public StringBuilder Insert ( int, long );

[ C++ ] public: StringBuilder* Insert ( int, __int64 );

[ JScript ] public function Insert ( int, long ) : StringBuilder;

10. Inserts the string representation of an object into this instance at the specified character position.

[ VB ] Overloads Public Function Insert ( Integer, Object ) As StringBuilder

[ C# ] public StringBuilder Insert ( int, object );

[ C++ ] public: StringBuilder* Insert ( int, Object* );

[ JScript ] public function Insert ( int, Object ) : StringBuilder;

11. Inserts the string representation of a specified 8-bit signed integer into this instance at the specified character position. This method is not CLS-compliant.

[ VB ] Overloads Public Function Insert ( Integer, SByte ) As StringBuilder

[ C# ] public StringBuilder Insert ( int, sbyte );

[ C++ ] public: StringBuilder* Insert ( int, char );

[ JScript ] public function Insert ( int, SByte ) : StringBuilder;

12. Inserts the string representation of a single-precision floating point number into this instance at the specified character position.

[ VB ] Overloads Public Function Insert ( Integer, Single ) As StringBuilder

[ C# ] public StringBuilder Insert ( int, float );

[ C++ ] public: StringBuilder* Insert ( int, float );

[ JScript ] public function Insert ( int, float ) : StringBuilder;

13. Inserts a string into this instance at the specified character position.

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

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

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

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

14. Inserts the string representation of a 16-bit unsigned integer into this instance at the specified character position. This method is not CLS-compliant.

[ VB ] Overloads Public Function Insert ( Integer, UInt16 ) As StringBuilder

[ C# ] public StringBuilder Insert ( int, ushort );

[ C++ ] public: StringBuilder* Insert ( int, unsigned short );

[ JScript ] public function Insert ( int, UInt16 ) : StringBuilder;

15. Inserts the string representation of a 32-bit unsigned integer into this instance at the specified character position. This method is not CLS-compliant.

[ VB ] Overloads Public Function Insert ( Integer, UInt32 ) As StringBuilder

[ C# ] public StringBuilder Insert ( int, uint );

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

[ JScript ] public function Insert ( int, UInt32 ) : StringBuilder;

16. Inserts the string representation of a 64-bit unsigned integer into this instance at the specified character position. This method is not CLS-compliant.

[ VB ] Overloads Public Function Insert ( Integer, UInt64 ) As StringBuilder

[ C# ] public StringBuilder Insert ( int, ulong );

[ C++ ] public: StringBuilder* Insert ( int, unsigned __int64 );

[ JScript ] public function Insert ( int, UInt64 ) : StringBuilder;

17. Inserts one or more copies of a specified string into this instance at the specified character position.

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

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

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

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

18. Inserts the string representation of a specified subarray of Unicode characters into this instance at the specified character position.

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

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

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

[ JScript ] public function Insert ( int, Char [ ], 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