Mega Code Archive

 
Categories / C# Tutorial / Development
 

Input from the console using ReadLine()

using System;      class MainClass {    public static void Main() {      string str;        Console.WriteLine("Enter some characters.");      str = Console.ReadLine();      Console.WriteLine("You entered: " + str);    }  } Enter some characters. qwer You entered: qwer