Console.ReadLine Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
ReadLine(String, Object[]) |
Reads a single line of text from the console. |
ReadLine() |
Reads a single line of text from the console. |
ReadLine(String, Object[])
Reads a single line of text from the console.
[Android.Runtime.Register("readLine", "(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;", "")]
public string? ReadLine (string? fmt, params Java.Lang.Object[]? args);
[<Android.Runtime.Register("readLine", "(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;", "")>]
member this.ReadLine : string * Java.Lang.Object[] -> string
Parameters
- fmt
- String
- args
- Object[]
Returns
A string containing the line read from the console, not
including any line-termination characters, or null
if an end of stream has been reached.
- Attributes
Remarks
Java documentation for java.io.Console.readLine()
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
ReadLine()
Reads a single line of text from the console.
[Android.Runtime.Register("readLine", "()Ljava/lang/String;", "")]
public string? ReadLine ();
[<Android.Runtime.Register("readLine", "()Ljava/lang/String;", "")>]
member this.ReadLine : unit -> string
Returns
A string containing the line read from the console, not
including any line-termination characters, or null
if an end of stream has been reached.
- Attributes
Remarks
Reads a single line of text from the console.
Java documentation for java.io.Console.readLine()
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.