StringBuilderExtensionAppendLine(StringBuilder, ReadOnlySpan`1Char) Method
Appends a copy of the specified read-only character span followed by the
standard line terminator to the end of a
StringBuilder object.
Namespace: FolkerKinzel.StringsAssembly: FolkerKinzel.Strings (in FolkerKinzel.Strings.dll) Version: 9.4.0+10a7d4d71aa960998e32ac0ac6c4fcbe4164c917
public static StringBuilder AppendLine(
this StringBuilder builder,
ReadOnlySpan<char> value
)
<ExtensionAttribute>
Public Shared Function AppendLine (
builder As StringBuilder,
value As ReadOnlySpan(Of Char)
) As StringBuilder
public:
[ExtensionAttribute]
static StringBuilder^ AppendLine(
StringBuilder^ builder,
ReadOnlySpan<wchar_t> value
)
[<ExtensionAttribute>]
static member AppendLine :
builder : StringBuilder *
value : ReadOnlySpan<char> -> StringBuilder
- builder StringBuilder
- The StringBuilder to which the characters are
appended.
- value ReadOnlySpanChar
- The read-only character span to append.
StringBuilderA reference to
builder after the append operation has
completed.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).