C#C
C#3y ago
AtomFPS

❔ external window pls

im trying to make it so when i run it, it runs on an external window

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

namespace gettingUserInput
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Hello");

            Console.ReadLine();
        }
    }
}


sadly for me it only runs on VS code internal console :(
Was this page helpful?