我有一个方法。
public bool bBIntersectsBT(Rect barTopTipRect, Rect barBottomTipRect, Rect blueBallRect)
{
barTopTipRect.Intersect(blueBallRect);
barBottomTipRect.Intersect(blueBallRect);
if (barTopTipRect.IsEmpty && barBottomTipRect.IsEmpty)
{
return false;
}
else
{
return true;
}
}
我想在再次执行此方法之前将此方法延迟 2 秒。我已经阅读了有关 Thread.Sleep 的信息,但是,这不是我想要的。我不希望程序暂停并恢复它。