Appends the source string builder to the end of this instance.

Namespace: MonoSoftware.Core
Assembly: MonoSoftware.Core (in MonoSoftware.Core.dll) Version: 1.0.40.669 (1.0.40.669)

Syntax

C#
public static void AppendAt(
	this StringBuilder sb,
	StringBuilder source,
	int index
)
Visual Basic
<ExtensionAttribute> 
Public Shared Sub AppendAt ( 
	sb As StringBuilder,
	source As StringBuilder,
	index As Integer
)
Visual C++
public:
[ExtensionAttribute]
static void AppendAt(
	StringBuilder^ sb, 
	StringBuilder^ source, 
	int index
)
F#
static member AppendAt : 
        sb : StringBuilder * 
        source : StringBuilder * 
        index : int -> unit 

Parameters

sb
Type: System.Text..::..StringBuilder
String builder
source
Type: System.Text..::..StringBuilder
Source string builder
index
Type: System..::..Int32
Add at index

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type StringBuilder. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also