0
点赞
收藏
分享

微信扫一扫

C# 进程间的同步 EventWaitHandle

青青子衿谈育儿 2023-06-06 阅读 70

  private const string Event_GUID = "{7D63AEC9-771C-4701-9A6E-FFAA88EC01EF}";

 

进程A.

 public static EventWaitHandle SystemSyncEvent { get; set; }

 SystemSyncEvent = EventWaitHandle.OpenExisting(Event_GUID);

 ewh.Set();

 

进程B.

 private const string Event_GUID = "{7D63AEC9-771C-4701-9A6E-FFAA88EC01EF}";

 public static EventWaitHandle SystemSyncEvent { get; set; }

 SystemSyncEvent = EventWaitHandle.OpenExisting(Event_GUID);

 SystemSyncEvent.WaitOne();//等待plc托管wcf服务启动完成

 



举报

相关推荐

0 条评论