InplaceStringBuilder.Append Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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 ^ value);
public void Append (string? value);
member this.Append : string -> unit
Public Sub Append (value As String)
Parameters
- value
- String
The string to append.
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 ^ value, int offset, int count);
public void Append (string? value, int offset, int count);
member this.Append : string * int * int -> unit
Public Sub Append (value As String, offset As Integer, count As Integer)
Parameters
- value
- String
The string that contains the substring to append.
- offset
- Int32
The starting position of the substring within value.
- count
- Int32
The number of characters in value to append.