Class ConversionsStringbuilderExtension
Provides extension methods for the StringBuilder class.
Inherited Members
Namespace: Coree.NETStandard.Extensions.Conversions.Stringbuilder
Assembly: Coree.NETStandard.dll
Syntax
public static class ConversionsStringbuilderExtension
Methods
| Edit this page View SourceAppendLineOrDefault(StringBuilder, string?)
Appends a new line to the StringBuilder instance. If the provided string is not null, empty, or whitespace, it appends the string followed by a new line; otherwise, it only appends a new line.
Declaration
public static void AppendLineOrDefault(this StringBuilder stringbuilder, string? value)
Parameters
Type | Name | Description |
---|---|---|
StringBuilder | stringbuilder | The StringBuilder instance on which the method is called. |
string | value | The string to append before the new line. If the string is null, empty, or consists only of white-space characters, only a new line is appended. |