Partager via


StringBuilder.AppendLine Méthode

Définition

Ajoute l’indicateur de fin de ligne par défaut, ou une copie d’une chaîne spécifiée et de l’indicateur de fin de ligne par défaut, à la fin de cette instance.

Surcharges

Nom Description
AppendLine()

Ajoute la marque de fin de ligne par défaut à la fin de l’objet actif StringBuilder .

AppendLine(String)

Ajoute une copie de la chaîne spécifiée suivie de l’indicateur de fin de ligne par défaut à la fin de l’objet actif StringBuilder .

AppendLine(StringBuilder+AppendInterpolatedStringHandler)

Ajoute la chaîne interpolée spécifiée suivie de l’indicateur de fin de ligne par défaut à la fin de l’objet StringBuilder actuel.

AppendLine(IFormatProvider, StringBuilder+AppendInterpolatedStringHandler)

Ajoute la chaîne interpolée spécifiée à l’aide du format spécifié, suivi de l’indicateur de fin de ligne par défaut, à la fin de l’objet StringBuilder actuel.

AppendLine()

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

Ajoute la marque de fin de ligne par défaut à la fin de l’objet actif StringBuilder .

public:
 System::Text::StringBuilder ^ AppendLine();
public System.Text.StringBuilder AppendLine();
[System.Runtime.InteropServices.ComVisible(false)]
public System.Text.StringBuilder AppendLine();
member this.AppendLine : unit -> System.Text.StringBuilder
[<System.Runtime.InteropServices.ComVisible(false)>]
member this.AppendLine : unit -> System.Text.StringBuilder
Public Function AppendLine () As StringBuilder

Retours

Référence à cette instance une fois l’opération d’ajout terminée.

Attributs

Exceptions

L’agrandissement de la valeur de cette instance dépasserait MaxCapacity.

Exemples

L’exemple suivant illustre la AppendLine méthode.

// 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.
*/
// This example demonstrates the StringBuilder.AppendLine()
// method.

open System.Text

let sb = StringBuilder()
let line = "A line of text."
let number = 123

// Append two lines of text.
sb.AppendLine "The first line of text." |> ignore
sb.AppendLine line |> ignore

// Append a new line, an empty string, and a null cast as a string.
sb.AppendLine() |> ignore
sb.AppendLine "" |> ignore
sb.AppendLine Unchecked.defaultof<string> |> ignore

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

// Append two lines of text.
sb.AppendLine line |> ignore
sb.AppendLine "The last line of text." |> ignore

// Convert the value of the StringBuilder to a string and display the string.
printfn $"{sb}"

// 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.
' This example demonstrates the StringBuilder.AppendLine() 
' method.
Imports System.Text

Class Sample
   Public Shared Sub Main()
      Dim sb As New StringBuilder()
      Dim line As String = "A line of text."
      Dim number As Integer = 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(CStr(Nothing))
      
      ' 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())
   End Sub
End Class
'
'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.

Remarques

Le terminateur de ligne par défaut est la valeur actuelle de la Environment.NewLine propriété.

La capacité de cette instance est ajustée en fonction des besoins.

Notes pour les appelants

Dans .NET Core et dans .NET Framework 4.0 et versions ultérieures, lorsque vous instanciez l’objet en appelant le StringBuilderStringBuilder(Int32, Int32) constructeur, la longueur et la capacité de l’instance StringBuilder peuvent dépasser la valeur de sa MaxCapacity propriété. Cela peut se produire en particulier lorsque vous appelez les méthodes et Append(String) les AppendFormat(String, Object) méthodes pour ajouter de petites chaînes.

Voir aussi

S’applique à

AppendLine(String)

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

Ajoute une copie de la chaîne spécifiée suivie de l’indicateur de fin de ligne par défaut à la fin de l’objet actif StringBuilder .

public:
 System::Text::StringBuilder ^ AppendLine(System::String ^ value);
public System.Text.StringBuilder AppendLine(string value);
public System.Text.StringBuilder AppendLine(string? value);
[System.Runtime.InteropServices.ComVisible(false)]
public System.Text.StringBuilder AppendLine(string value);
member this.AppendLine : string -> System.Text.StringBuilder
[<System.Runtime.InteropServices.ComVisible(false)>]
member this.AppendLine : string -> System.Text.StringBuilder
Public Function AppendLine (value As String) As StringBuilder

Paramètres

value
String

Chaîne à ajouter.

Retours

Référence à cette instance une fois l’opération d’ajout terminée.

Attributs

Exceptions

L’agrandissement de la valeur de cette instance dépasserait MaxCapacity.

Remarques

Le terminateur de ligne par défaut est la valeur actuelle de la Environment.NewLine propriété.

La capacité de cette instance est ajustée en fonction des besoins.

Notes pour les appelants

Dans .NET Core et dans .NET Framework 4.0 et versions ultérieures, lorsque vous instanciez l’objet en appelant le StringBuilderStringBuilder(Int32, Int32) constructeur, la longueur et la capacité de l’instance StringBuilder peuvent dépasser la valeur de sa MaxCapacity propriété. Cela peut se produire en particulier lorsque vous appelez les méthodes et Append(String) les AppendFormat(String, Object) méthodes pour ajouter de petites chaînes.

Voir aussi

S’applique à

AppendLine(StringBuilder+AppendInterpolatedStringHandler)

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

Ajoute la chaîne interpolée spécifiée suivie de l’indicateur de fin de ligne par défaut à la fin de l’objet StringBuilder actuel.

public:
 System::Text::StringBuilder ^ AppendLine(System::Text::StringBuilder::AppendInterpolatedStringHandler % handler);
public System.Text.StringBuilder AppendLine(ref System.Text.StringBuilder.AppendInterpolatedStringHandler handler);
member this.AppendLine : AppendInterpolatedStringHandler -> System.Text.StringBuilder
Public Function AppendLine (ByRef handler As StringBuilder.AppendInterpolatedStringHandler) As StringBuilder

Paramètres

handler
StringBuilder.AppendInterpolatedStringHandler

Chaîne interpolée à ajouter.

Retours

Référence à cette instance une fois l’opération d’ajout terminée.

S’applique à

AppendLine(IFormatProvider, StringBuilder+AppendInterpolatedStringHandler)

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

Ajoute la chaîne interpolée spécifiée à l’aide du format spécifié, suivi de l’indicateur de fin de ligne par défaut, à la fin de l’objet StringBuilder actuel.

public:
 System::Text::StringBuilder ^ AppendLine(IFormatProvider ^ provider, System::Text::StringBuilder::AppendInterpolatedStringHandler % handler);
public System.Text.StringBuilder AppendLine(IFormatProvider? provider, ref System.Text.StringBuilder.AppendInterpolatedStringHandler handler);
member this.AppendLine : IFormatProvider * AppendInterpolatedStringHandler -> System.Text.StringBuilder
Public Function AppendLine (provider As IFormatProvider, ByRef handler As StringBuilder.AppendInterpolatedStringHandler) As StringBuilder

Paramètres

provider
IFormatProvider

Objet qui fournit des informations de mise en forme propres à la culture.

handler
StringBuilder.AppendInterpolatedStringHandler

Chaîne interpolée à ajouter.

Retours

Référence à cette instance une fois l’opération d’ajout terminée.

S’applique à