I'm trying to run a simple Hello World code in VSC(mac os)
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");
Console.ReadLine();
}
}
Then i got
[Running] scriptcs -script "/Users/Username/Desktop/csharpstudy/test.cs"
[Done] exited with code=0 in 1.808 seconds
Any help please!