Method WriteLine
WriteLine()
Writes an line-break at the end of the output.
public void WriteLine()
WriteLine(object?)
Writes the text and concats an line-break at the end into the output.
public void WriteLine(object? message)
Parameters
message
objectThe text that will be written in the output.
WriteLine(string)
Writes the text and concats an line-break at the end into the output.
public void WriteLine(string message)
Parameters
message
stringThe text that will be written in the output.
WriteLine(string, params object?[])
Writes the text format and arguments and concats an line-break at the end into the output.
public void WriteLine(string format, params object?[] args)