Method WriteLine
WriteLine()
Writes an empty line to console. Caret position is changed to the beginning of the next line.
void WriteLine()
WriteLine(string)
Writes text to console at the current caret position. After write operation is performed, caret is moved to the beginning of the next line.
void WriteLine(string text)
Parameters
text
stringText to write.