Click or drag to resize
StringBuilderAppendLine Method (String)
Appends a copy of the specified string followed by the default line terminator to the end of the current StringBuilder object.

Namespace: System.Text
Assembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax
C#
public StringBuilder AppendLine(
	string value
)

Parameters

value
Type: SystemString
The string to append.

Return Value

Type: StringBuilder
A reference to this instance after the append operation has completed.
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionEnlarging the value of this instance would exceed MaxCapacity.
See Also