Just like the way the computer does it in War Games. I\'ve started, but I don\'t know where to go from here.
static void TypeLine(string line) { string o
The easiest way may be to Sleep() between characters. Something like this:
static void TypeLine(string line) { for (int i = 0; i < line.Length; i++) { Console.Write(line[i]); System.Threading.Thread.Sleep(150); // Sleep for 150 milliseconds } }