Method
StdIn
Description
Retrieves the global reference to the standard input stream, used in ConsoleApplications.
Usage
result = StdIn
Part |
Type |
Description |
---|---|---|
result |
The standard input stream is typically the keyboard as used for the Terminal application. |
Sample code
Gets the input after the user presses return:
Var s As String
s = StdIn.ReadLine
Compatibility
All project types on all supported operating systems.
See also
ConsoleApplication, StandardInputStream, StandardOutputStream classes; TargetDesktop constant; Input, Print, StdOut, StdErr methods; Readable class interface.