Pages

Wednesday 26 February 2014

Output Console Window Closing Automatically without Showing Output in c#

Output Console Window Closing Automatically without Showing Output  c#

 we just need to add Console.ReadLine()at the end of your code.Below is the example

 class Program
{
static void Main(string[] args)
{
Console.WriteLine("Welcome to http://fantasyaspnet.blogspot.in/");
Console.ReadLine();
}
}


No comments:

Post a Comment