Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 C# 中点击of后是否需要调用reset清除多个集合?WaitOne();AutoResetEvent
reset
WaitOne();
AutoResetEvent
AutoResetEvent没有计数器 - 只是设置/未设置状态,所以不,WaitOne()即使事件被设置多次,您也不必在调用返回后做任何特别的事情。
WaitOne()