I have a problem! When I run this code in c# console application:
class Program  
{ 
    static void Main(string[] args)        
    {    
        Console.WriteLine("Press any key to exit.");            
        Console.Readkey();
    }
} 
.. it doesn't take effect and the program automatically closes ... What to do?
 
     
     
    