我正在开发 ac# 控制台应用程序。
我必须在屏幕上的指定光标位置显示一个计时器,同时用户应该输入一些东西。
我怎样才能做到这一点?
Console.SetCursorPosition(x, y);
//timer code here
Console.SetCursorPosition(x, y); // cursor goes to some other location because timer is displayed at top-right of the screen.
我的问题是这个方法不同步。我必须等到光标转到该位置然后显示时间并返回以便我可以输入。