【发布时间】:2020-09-07 05:44:18
【问题描述】:
我只是想知道如何使 c# 控制台中的链接可单击并能够在浏览器中执行。代码如下:
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();
}
}
}
【问题讨论】:
-
这能回答你的问题吗? .net console app with hyperlinks?
-
如果您正在寻找 DYI 路线 - stackoverflow.com/questions/1944481/…