StringBuilder.AppendLine Method

Definition

Appends the default line terminator, or a copy of a specified string and the default line terminator, to the end of this instance.

Overloads

AppendLine()

Appends the default line terminator to the end of the current StringBuilder object.

AppendLine(String)

Appends a copy of the specified string followed by the default line terminator to the end of the current StringBuilder object.

AppendLine(StringBuilder+AppendInterpolatedStringHandler)

Appends the specified interpolated string followed by the default line terminator to the end of the current StringBuilder object.

AppendLine(IFormatProvider, StringBuilder+AppendInterpolatedStringHandler)

Appends the specified interpolated string using the specified format, followed by the default line terminator, to the end of the current StringBuilder object.

AppendLine()

Source:
StringBuilder.cs
Source:
StringBuilder.cs
Source:
StringBuilder.cs

Appends the default line terminator to the end of the current StringBuilder object.

C#
public System.Text.StringBuilder AppendLine();
C#
[System.Runtime.InteropServices.ComVisible(false)]
public System.Text.StringBuilder AppendLine();

Returns

A reference to this instance after the append operation has completed.

Attributes

Exceptions

Enlarging the value of this instance would exceed MaxCapacity.

Examples

The following example demonstrates the AppendLine method.

C#
// This example demonstrates the StringBuilder.AppendLine()
// method.

using System;
using System.Text;

class Sample
{
    public static void Main()
    {
    StringBuilder sb = new StringBuilder();
    string        line = "A line of text.";
    int           number = 123;

// Append two lines of text.
    sb.AppendLine("The first line of text.");
    sb.AppendLine(line);

// Append a new line, an empty string, and a null cast as a string.
    sb.AppendLine();
    sb.AppendLine("");
    sb.AppendLine((string)null);

// Append the non-string value, 123, and two new lines.
    sb.Append(number).AppendLine().AppendLine();

// Append two lines of text.
    sb.AppendLine(line);
    sb.AppendLine("The last line of text.");

// Convert the value of the StringBuilder to a string and display the string.
    Console.WriteLine(sb.ToString());
    }
}
/*
This example produces the following results:

The first line of text.
A line of text.



123

A line of text.
The last line of text.
*/

Remarks

The default line terminator is the current value of the Environment.NewLine property.

The capacity of this instance is adjusted as needed.

Notes to Callers

In .NET Core and in the .NET Framework 4.0 and later versions, when you instantiate the StringBuilder object by calling the StringBuilder(Int32, Int32) constructor, both the length and the capacity of the StringBuilder instance can grow beyond the value of its MaxCapacity property. This can occur particularly when you call the Append(String) and AppendFormat(String, Object) methods to append small strings.

See also

Applies to

.NET 10 and other versions
Product Versions
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.0, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 2.0, 2.1
UWP 10.0

AppendLine(String)

Source:
StringBuilder.cs
Source:
StringBuilder.cs
Source:
StringBuilder.cs

Appends a copy of the specified string followed by the default line terminator to the end of the current StringBuilder object.

C#
public System.Text.StringBuilder AppendLine(string value);
C#
public System.Text.StringBuilder AppendLine(string? value);
C#
[System.Runtime.InteropServices.ComVisible(false)]
public System.Text.StringBuilder AppendLine(string value);

Parameters

value
String

The string to append.

Returns

A reference to this instance after the append operation has completed.

Attributes

Exceptions

Enlarging the value of this instance would exceed MaxCapacity.

Remarks

The default line terminator is the current value of the Environment.NewLine property.

The capacity of this instance is adjusted as needed.

Notes to Callers

In .NET Core and in the .NET Framework 4.0 and later versions, when you instantiate the StringBuilder object by calling the StringBuilder(Int32, Int32) constructor, both the length and the capacity of the StringBuilder instance can grow beyond the value of its MaxCapacity property. This can occur particularly when you call the Append(String) and AppendFormat(String, Object) methods to append small strings.

See also

Applies to

.NET 10 and other versions
Product Versions
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.0, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 2.0, 2.1
UWP 10.0

AppendLine(StringBuilder+AppendInterpolatedStringHandler)

Source:
StringBuilder.cs
Source:
StringBuilder.cs
Source:
StringBuilder.cs

Appends the specified interpolated string followed by the default line terminator to the end of the current StringBuilder object.

C#
public System.Text.StringBuilder AppendLine(ref System.Text.StringBuilder.AppendInterpolatedStringHandler handler);

Parameters

handler
StringBuilder.AppendInterpolatedStringHandler

The interpolated string to append.

Returns

A reference to this instance after the append operation has completed.

Applies to

.NET 10 and other versions
Product Versions
.NET 6, 7, 8, 9, 10

AppendLine(IFormatProvider, StringBuilder+AppendInterpolatedStringHandler)

Source:
StringBuilder.cs
Source:
StringBuilder.cs
Source:
StringBuilder.cs

Appends the specified interpolated string using the specified format, followed by the default line terminator, to the end of the current StringBuilder object.

C#
public System.Text.StringBuilder AppendLine(IFormatProvider? provider, ref System.Text.StringBuilder.AppendInterpolatedStringHandler handler);

Parameters

provider
IFormatProvider

An object that supplies culture-specific formatting information.

handler
StringBuilder.AppendInterpolatedStringHandler

The interpolated string to append.

Returns

A reference to this instance after the append operation has completed.

Applies to

.NET 10 and other versions
Product Versions
.NET 6, 7, 8, 9, 10