- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace CommonUtils.运行信号量
- {
- public class StaticManualResetEvent
- {
- public static ManualResetEvent ManualisStopEvent = new ManualResetEvent(false);
- }
- }
|