AutoResetEvent、ManualResetEvent能否用于进程通信?解决方法

AutoResetEvent、ManualResetEvent能否用于进程通信?c++的CreateEvent就可以,c#的AutoResetEvent、ManualRes

AutoResetEvent、ManualResetEvent能否用于进程通信?
c++的CreateEvent就可以,c#的AutoResetEvent、ManualResetEvent可以吗
为什么AutoResetEvent、ManualResetEvent没有名字这个参数?

[解决办法]
AutoResetEvent和ManualResetEvent只是极其简单地继承EventWaitHandle。

要带命名事件可以直接用EventWaitHandle(和C++CreateEvent内部机理相同):
new EventWaitHandle(false, EventResetMode.AutoReset, "MyNamedEvent");