Hello!!!

I can't execute any .exe C# file that I've made.

For example I write the most simple code:

--------------------------------------------------
Code:
Hide   Copy Code
using System;
namespace ConsoleApplication2
{
    class Program
    {
        static void Main(string[] args)
        {
         
                 Console.WriteLine("HELLO WORLD");
...