I was just wondering how I could make a link in c# console clickable and be able to execute in a browser. Here is the code:
using System.Collections.Generic;
using System.Text;
namespace Project
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Click here to be redirected");
Console.WriteLine("https://stackoverflow.com");
Console.ReadLine();
}
}
}