I think it should be possible without any issue see the following helloworld program -
using System;
namespace HelloWorld
{
class Hello
{
static void Main()
{
Console.WriteLine("Hello World!");
// Keep the console window open in debug mode.
Console.WriteLine("Press any key to exit.");
Console.ReadKey();
}
}
}
Steps to execute -
1. Start Visual Studio.
2. On the menu bar, choose File, New, Project.
The New Project dialog box opens.
3. Expand Installed, expand Templates, expand Visual C#, and then choose Console Application.
In the Name box, specify a name for your project, and then choose the OK button.
4. The new project appears in Solution Explorer.
5. If Program.cs isn't open in the Code Editor, open the shortcut menu for Program.cs in Solution Explorer, and then choose View Code.
6. Replace the contents of Program.cs with the following code.
7. Choose the F5 key to run the project. A Command Prompt window appears that contains the line Hello World!