ManualResetEventExtensions
using System.Threading;
namespace NUnit.Framework.Internal.Execution
{
internal static class ManualResetEventExtensions
{
public static bool Wait(this ManualResetEvent mre, int millisecondsTimeout)
{
return mre.WaitOne(millisecondsTimeout, false);
}
}
}