StringBuilder.AppendLine Metoda

Definice

Připojí výchozí zakončení řádku nebo kopii zadaného řetězce a výchozí zakončení řádku na konec této instance.

Přetížení

AppendLine()

Připojí výchozí ukončovací znak řádku na konec aktuálního StringBuilder objektu.

AppendLine(String)

Připojí kopii zadaného řetězce následovaného výchozím zakončením řádku na konci aktuálního StringBuilder objektu.

AppendLine(StringBuilder+AppendInterpolatedStringHandler)

Připojí zadaný interpolující řetězec následovaný výchozím zakončením řádku na konec aktuálního objektu StringBuilder.

AppendLine(IFormatProvider, StringBuilder+AppendInterpolatedStringHandler)

Připojí zadaný interpolující řetězec pomocí zadaného formátu následovaného výchozím zakončením řádku na konci aktuálního objektu StringBuilder.

AppendLine()

Připojí výchozí ukončovací znak řádku na konec aktuálního StringBuilder objektu.

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

Návraty

StringBuilder

Odkaz na tuto instanci po dokončení operace APPEND.

Atributy

Výjimky

Zvětšení hodnoty této instance by překročilo MaxCapacity .

Příklady

Následující příklad ukazuje AppendLine metodu.

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

using namespace System;
using namespace System::Text;

int main()
{
    StringBuilder^ sb = gcnew StringBuilder;
    String^ line = L"A line of text.";
    int number = 123;

    // Append two lines of text.
    sb->AppendLine( L"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( L"" );
    sb->AppendLine( L"" );

    // 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( L"The last line of text." );

    // Convert the value of the StringBuilder to a string and display the string.
    Console::WriteLine( sb );

    return 0;
}

/*
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.

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.
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.

Poznámky

Výchozí ukončovací znak řádku je aktuální hodnota Environment.NewLine Vlastnosti.

Kapacita této instance se podle potřeby upraví.

Poznámky pro volající

v rozhraní .net Core a v .NET Framework 4,0 a novějších verzích při vytváření instance StringBuilder objektu voláním StringBuilder(Int32, Int32) konstruktoru může být délka i kapacita StringBuilder instance větší než hodnota jeho MaxCapacity vlastnosti. K tomu může dojít zejména při volání Append(String) metod a AppendFormat(String, Object) pro připojení malých řetězců.

Viz také

Platí pro

AppendLine(String)

Připojí kopii zadaného řetězce následovaného výchozím zakončením řádku na konci aktuálního StringBuilder objektu.

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

Parametry

value
String

Řetězec, který se má připojit.

Návraty

StringBuilder

Odkaz na tuto instanci po dokončení operace APPEND.

Atributy

Výjimky

Zvětšení hodnoty této instance by překročilo MaxCapacity .

Poznámky

Výchozí ukončovací znak řádku je aktuální hodnota Environment.NewLine Vlastnosti.

Kapacita této instance se podle potřeby upraví.

Poznámky pro volající

v rozhraní .net Core a v .NET Framework 4,0 a novějších verzích při vytváření instance StringBuilder objektu voláním StringBuilder(Int32, Int32) konstruktoru může být délka i kapacita StringBuilder instance větší než hodnota jeho MaxCapacity vlastnosti. K tomu může dojít zejména při volání Append(String) metod a AppendFormat(String, Object) pro připojení malých řetězců.

Viz také

Platí pro

AppendLine(StringBuilder+AppendInterpolatedStringHandler)

Připojí zadaný interpolující řetězec následovaný výchozím zakončením řádku na konec aktuálního objektu StringBuilder.

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

Parametry

handler
StringBuilder.AppendInterpolatedStringHandler

Interpolovaná řetězcová předpona.

Návraty

StringBuilder

Odkaz na tuto instanci po dokončení operace APPEND.

Platí pro

AppendLine(IFormatProvider, StringBuilder+AppendInterpolatedStringHandler)

Připojí zadaný interpolující řetězec pomocí zadaného formátu následovaného výchozím zakončením řádku na konci aktuálního objektu StringBuilder.

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

Parametry

provider
IFormatProvider

Objekt, který poskytuje informace o formátování specifické pro jazykovou verzi.

handler
StringBuilder.AppendInterpolatedStringHandler

Interpolovaná řetězcová předpona.

Návraty

StringBuilder

Odkaz na tuto instanci po dokončení operace APPEND.

Platí pro