AtomFPS
AtomFPS
CC#
Created by AtomFPS on 7/29/2023 in #help
❔ 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();
}
}
}
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 :(
177 replies