IndentedStringBuilder.Append 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
Append(Char) |
將目前的縮排,然後將指定的 char 附加至所建置的字串。 |
Append(IEnumerable<Char>) |
將目前的縮排,然後將指定的字元附加至所建置的字串。 |
Append(IEnumerable<String>) |
將目前的縮排,然後將指定的字串附加至所建置的字串。 |
Append(FormattableString) |
將目前的縮排,然後將指定的字串附加至所建置的字串。 |
Append(String) |
將目前的縮排,然後將指定的字串附加至所建置的字串。 |
Append(Char)
將目前的縮排,然後將指定的 char 附加至所建置的字串。
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
參數
- value
- Char
要附加的字元。
傳回
此建置器可鏈結其他呼叫。
適用於
Append(IEnumerable<Char>)
將目前的縮排,然後將指定的字元附加至所建置的字串。
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
參數
- value
- IEnumerable<Char>
要附加的字元。
傳回
此建置器可鏈結其他呼叫。
適用於
Append(IEnumerable<String>)
將目前的縮排,然後將指定的字串附加至所建置的字串。
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
參數
- value
- IEnumerable<String>
要附加的字串。
傳回
此建置器可鏈結其他呼叫。
適用於
Append(FormattableString)
將目前的縮排,然後將指定的字串附加至所建置的字串。
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
參數
- value
- FormattableString
要附加的字串。
傳回
此建置器可鏈結其他呼叫。
適用於
Append(String)
將目前的縮排,然後將指定的字串附加至所建置的字串。
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
參數
- value
- String
要附加的字串。
傳回
此建置器可鏈結其他呼叫。