Search code examples
c#visual-studio-codescriptcsvscode-code-runner

Why doesn't Console.WriteLine work in Visual Studio Code?


I have scriptcs and coderunner installed on Visual Studio Code. When I run a simple program that includes Console.WriteLine("Test") I don't see any output. The program seems to run successfully and exits with code 0.

Any suggestions?

Here's all the code in case anyone is interested:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

class Program
{
    static void Main(string[] args)
    {
        Console.WriteLine("Test");
    }
}

Solution

  • If you are just trying to run a cs file without a project etc then the problem is that code runner is treating the file as a script. As such the main method is actually not being invoked as it would be if running a console app.

    The solution therefore is to make your main method public and add a call to Program.Main(null); after the class definition. This solution does not require any launch.json config file or config changes. Note the call to Program.Main after the class definition does show as an error in VS code but it runs fine in code runner. See the code block below.

    using System;
    class Program
    {
        public static void Main(string[] args)
        {
            Console.WriteLine("Test");
        }
    }
    
    Program.Main(null);
    

    I found the answer to this here: https://stackoverflow.com/a/46179597