using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace test1
{
class Program
{
static void Main(string[] args)
{
char ch = (char)System.Console.Read();
Console.WriteLine(ch);
Console.Read();
}
}
}
I usually use "Console.Read()" to pause the output screen. But i doesn't work when in a program already involving "Console.Read()". What's the justification for this?