Я должен перенести проект в компактную среду. И не может конвертировать в
ThreadPool.RegisterWaitForSingleObject
(WaitHandle, WaitOrTimerCallback,
object, int, bool)
Что может быть альтернативным способом для ThreadPool.RegisterWaitForSingleObject в c #
lock (this.RegLock)
{
if (!this.WaitFlag)
{
this.mre.Reset();
if (this.handle != null)
{
this.handle.Unregister(null);
}
this.handle = ThreadPool.RegisterWaitForSingleObject(this.mre, this.WOTcb, null, this.Interval, true);
}
else
{
this.StartFlag = true;
if (this.Interval < this.timeout)
{
this.timeout = this.Interval;
}
}
}