Read a string from the keyboard, using Console.In directly
/*
C#: The Complete Reference
by Herbert Schildt
Publisher: Osborne/McGraw-Hill (March 8, 2002)
ISBN: 0072134852
*/
// Read a string from the keyboard, using Console.In directly.
using System;
public class ReadChars2 {
public static void Main() {
string str;
Console.WriteLine("Enter some characters.");
str = Console.In.ReadLine();
Console.WriteLine("You entered: " + str);
}
}
Related examples in the same category