The opinions expressed herein are my own personal opinions. They are not necessarily fact or sactioned by any other person or organization. If you disagree that's your right. It's also my right to not care.
© Copyright 2010, Chris Tacke
Another feature that missed the 2.1 cutoff - we've added a couple things to our existing EventWaitHandle:
A Set() overload:public bool Set(int data)
A GetData method:public int GetData()
For simple, fast, and really easy to implement IPC you can just do this:
Process AEventWaitHandle wh = new EventWaitHandle(false, EventResetMode.AutoReset, "MY_EVENT_NAME");
int myData = 10;wh.Set(myData);
Process BEventWaitHandle wh = new EventWaitHandle(false, EventResetMode.AutoReset, "MY_EVENT_NAME");
if
No MessageWindows, no queues - no ugliness at all - and it works with really minimal headless CE systems.
Remember Me