IndentedStringBuilder.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(Char) |
Appends the current indent and then the given char to the string being built. |
Append(IEnumerable<Char>) |
Appends the current indent and then the given chars to the string being built. |
Append(IEnumerable<String>) |
Appends the current indent and then the given strings to the string being built. |
Append(FormattableString) |
Appends the current indent and then the given string to the string being built. |
Append(String) |
Appends the current indent and then the given string to the string being built. |
Append(Char)
- Source:
- IndentedStringBuilder.cs
- Source:
- IndentedStringBuilder.cs
- Source:
- IndentedStringBuilder.cs
- Source:
- IndentedStringBuilder.cs
Appends the current indent and then the given char to the string being built.
public virtual Microsoft.EntityFrameworkCore.Infrastructure.IndentedStringBuilder Append (char value);
abstract member Append : char -> Microsoft.EntityFrameworkCore.Infrastructure.IndentedStringBuilder
override this.Append : char -> Microsoft.EntityFrameworkCore.Infrastructure.IndentedStringBuilder
Public Overridable Function Append (value As Char) As IndentedStringBuilder
Parameters
- value
- Char
The char to append.
Returns
This builder so that additional calls can be chained.
Applies to
Append(IEnumerable<Char>)
- Source:
- IndentedStringBuilder.cs
- Source:
- IndentedStringBuilder.cs
- Source:
- IndentedStringBuilder.cs
- Source:
- IndentedStringBuilder.cs
Appends the current indent and then the given chars to the string being built.
public virtual Microsoft.EntityFrameworkCore.Infrastructure.IndentedStringBuilder Append (System.Collections.Generic.IEnumerable<char> value);
abstract member Append : seq<char> -> Microsoft.EntityFrameworkCore.Infrastructure.IndentedStringBuilder
override this.Append : seq<char> -> Microsoft.EntityFrameworkCore.Infrastructure.IndentedStringBuilder
Public Overridable Function Append (value As IEnumerable(Of Char)) As IndentedStringBuilder
Parameters
- value
- IEnumerable<Char>
The chars to append.
Returns
This builder so that additional calls can be chained.
Applies to
Append(IEnumerable<String>)
- Source:
- IndentedStringBuilder.cs
- Source:
- IndentedStringBuilder.cs
- Source:
- IndentedStringBuilder.cs
- Source:
- IndentedStringBuilder.cs
Appends the current indent and then the given strings to the string being built.
public virtual Microsoft.EntityFrameworkCore.Infrastructure.IndentedStringBuilder Append (System.Collections.Generic.IEnumerable<string> value);
abstract member Append : seq<string> -> Microsoft.EntityFrameworkCore.Infrastructure.IndentedStringBuilder
override this.Append : seq<string> -> Microsoft.EntityFrameworkCore.Infrastructure.IndentedStringBuilder
Public Overridable Function Append (value As IEnumerable(Of String)) As IndentedStringBuilder
Parameters
- value
- IEnumerable<String>
The strings to append.
Returns
This builder so that additional calls can be chained.
Applies to
Append(FormattableString)
- Source:
- IndentedStringBuilder.cs
- Source:
- IndentedStringBuilder.cs
Appends the current indent and then the given string to the string being built.
public virtual Microsoft.EntityFrameworkCore.Infrastructure.IndentedStringBuilder Append (FormattableString value);
abstract member Append : FormattableString -> Microsoft.EntityFrameworkCore.Infrastructure.IndentedStringBuilder
override this.Append : FormattableString -> Microsoft.EntityFrameworkCore.Infrastructure.IndentedStringBuilder
Public Overridable Function Append (value As FormattableString) As IndentedStringBuilder
Parameters
- value
- FormattableString
The string to append.
Returns
This builder so that additional calls can be chained.
Applies to
Append(String)
- Source:
- IndentedStringBuilder.cs
- Source:
- IndentedStringBuilder.cs
- Source:
- IndentedStringBuilder.cs
- Source:
- IndentedStringBuilder.cs
- Source:
- IndentedStringBuilder.cs
Appends the current indent and then the given string to the string being built.
public virtual Microsoft.EntityFrameworkCore.Infrastructure.IndentedStringBuilder Append (string value);
abstract member Append : string -> Microsoft.EntityFrameworkCore.Infrastructure.IndentedStringBuilder
override this.Append : string -> Microsoft.EntityFrameworkCore.Infrastructure.IndentedStringBuilder
Public Overridable Function Append (value As String) As IndentedStringBuilder
Parameters
- value
- String
The string to append.
Returns
This builder so that additional calls can be chained.
Applies to
Entity Framework