InplaceStringBuilder.Append Method

Definition

Overloads

Append(StringSegment)

Appends a string segment to the end of the current InplaceStringBuilder instance.

Append(Char)

Appends a character to the end of the current InplaceStringBuilder instance.

Append(String)

Appends a string to the end of the current InplaceStringBuilder instance.

Append(String, Int32, Int32)

Appends a substring to the end of the current InplaceStringBuilder instance.

Append(StringSegment)

Source:
InplaceStringBuilder.cs
Source:
InplaceStringBuilder.cs
Source:
InplaceStringBuilder.cs

Appends a string segment to the end of the current InplaceStringBuilder instance.

public:
 void Append(Microsoft::Extensions::Primitives::StringSegment segment);
public void Append (Microsoft.Extensions.Primitives.StringSegment segment);
member this.Append : Microsoft.Extensions.Primitives.StringSegment -> unit
Public Sub Append (segment As StringSegment)

Parameters

segment
StringSegment

The string segment to append.

Applies to

Append(Char)

Source:
InplaceStringBuilder.cs
Source:
InplaceStringBuilder.cs
Source:
InplaceStringBuilder.cs

Appends a character to the end of the current InplaceStringBuilder instance.

public:
 void Append(char c);
public void Append (char c);
member this.Append : char -> unit
Public Sub Append (c As Char)

Parameters

c
Char

The character to append.

Applies to

Append(String)

Source:
InplaceStringBuilder.cs
Source:
InplaceStringBuilder.cs
Source:
InplaceStringBuilder.cs

Appends a string to the end of the current InplaceStringBuilder instance.

public:
 void Append(System::String ^ s);
public:
 void Append(System::String ^ value);
public void Append (string s);
public void Append (string value);
public void Append (string? value);
member this.Append : string -> unit
member this.Append : string -> unit
Public Sub Append (s As String)
Public Sub Append (value As String)

Parameters

svalue
String

Applies to

Append(String, Int32, Int32)

Source:
InplaceStringBuilder.cs
Source:
InplaceStringBuilder.cs
Source:
InplaceStringBuilder.cs

Appends a substring to the end of the current InplaceStringBuilder instance.

public:
 void Append(System::String ^ s, int offset, int count);
public:
 void Append(System::String ^ value, int offset, int count);
public void Append (string s, int offset, int count);
public void Append (string value, int offset, int count);
public void Append (string? value, int offset, int count);
member this.Append : string * int * int -> unit
member this.Append : string * int * int -> unit
Public Sub Append (s As String, offset As Integer, count As Integer)
Public Sub Append (value As String, offset As Integer, count As Integer)

Parameters

svalue
String
offset
Int32

The starting position of the substring within value.

count
Int32

The number of characters in value to append.

Applies to