有办法实现吗?我想传递一些文本并将其
显示在输入行上 – 而不是“输入您的
名称:< cursor>”,我想要“输入您的
名称:默认可编辑文本< cursor>”
好的,找到了抱歉.
static void Main(string[] args)
{
Console.Write("Your editable text:");
SendKeys.SendWait("hello"); //hello text will be editable :)
Console.ReadLine();
}
原文链接:https://www.f2er.com/csharp/94241.html