Console.PrintLine() Method
Writes text to the console output window, followed by a line ending.
Syntax
Console.PrintLine(Text)
The method syntax has these parts:
Part |
Description |
Text (String) |
the text to be written |
Return (Nothing) |
Does not return a value. |
Remarks
It is not possible to send part of a line to the console. Splice all of the pieces of your line together before sending to the console with this method.
Copyright © 2000-2016, Robert B. Denny, Mesa, AZ