>Hi, I'm looking for native .NET functionality that does the equivalent of
>a notify() or notifyAll(). I can do it using unmanaged C++, but was
>hoping there was a .NET native way to do something as fundamental as that.
I'm not 100% sure if that's the right counterpart, but I think you should
look at the Pulse and PulseAll methods of the Monitor class.
Oliver Sturm

Signature
Expert programming and consulting services available
See http://www.sturmnet.org (try /blog as well)
Robert Houben - 09 Sep 2005 17:01 GMT
Thanks, I found that and implemented it, and it appears to work. Sometimes
it's really hard to find the right stuff using help.
>>Hi, I'm looking for native .NET functionality that does the equivalent of
>>a notify() or notifyAll(). I can do it using unmanaged C++, but was
[quoted text clipped - 4 lines]
>
> Oliver Sturm