file/ | |
License | Copyright © 2007-2011, FreeBASIC Extended Library Development Group |
ext | |
Enumerations | |
ConsoleIO | Used by the Console object to determine whether to read or write from the console. |
Console | Class emulating the basic functionality of C#’s System.Console object. |
Functions | |
Constructor | |
ReadLine | Retreives one full line of input from the console. |
Write | Overloaded to print any built-in type to the console without a line break afterwards. |
WriteLine | Overloaded to print any built-in type to the console followed by a line break. |
Properties | |
LastError | Returns the integer error code of the last error. |
Copyright © 2007-2011, FreeBASIC Extended Library Development Group
Distributed under the FreeBASIC Extended Library Group license. See accompanying file LICENSE.txt or copy at http://code.google.com
Enumerations | |
ConsoleIO | Used by the Console object to determine whether to read or write from the console. |
Class emulating the basic functionality of C#’s System.Console object.
This object is threadsafe.
Functions | |
Constructor | |
ReadLine | Retreives one full line of input from the console. |
Write | Overloaded to print any built-in type to the console without a line break afterwards. |
WriteLine | Overloaded to print any built-in type to the console followed by a line break. |
Properties | |
LastError | Returns the integer error code of the last error. |
Retreives one full line of input from the console.
declare function ReadLine( ) as string
Overloaded to print any built-in type to the console without a line break afterwards.
declare sub Write ( byref x as fbext_TypeName(T_) )
Overloaded to print any built-in type to the console followed by a line break.
declare sub WriteLine ( byref x as fbext_TypeName(T_) )
Returns the integer error code of the last error.
declare property LastError( ) as integer