如何检查光标是否在空白控制台 space(C#)

How to check if the cursor is on blank console space(C#)

我想检查光标是在 text/character 上还是在空白控制台区域上。 有没有办法在 C# 的控制台应用程序中执行此操作?

只想知道黄色光标(在我的例子中)是在 @S 之一上还是在空白控制台上 space。

对我有用的是:

if (Console.CursorLeft == checkedXPosition && Console.CursorTop == checkedYPosition)
{
  // Do something
}