I wrote the following code in visual studio 2012:
using System;
class Example
{
static void main()
{
int x = 100;
Console.WriteLine("X Contains:" + x);
int y = x / 2;
Console.WriteLine("y contains");
Console.WriteLine(y);
Console.WriteLine("A Sample C# Program");
}
}
There were no errors, but the output window was empty. It did not print anything. What should I do so that I get the text displayed?
