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");
}
}
Debug.WriteLine("Test")
do you get something? @MattWest – Ronniusing System.Diagnostics;
– Ronni