Are condition variables & monitors used in C#?

Can someone give me an example?

link|improve this question

76% accept rate
As well as the lock-statement and the Monitor class, have a look at WaitHandles (msdn.microsoft.com/en-us/library/…) which can be very useful and save you from boring boilerplate. – Skurmedel Dec 31 '09 at 16:47
feedback

4 Answers

up vote 7 down vote accepted

The equivalent of a condition variable in .NET is the abstract WaitHandle class. Practical implementations of it are the ManualResetEvent, AutoResetEvent, Mutex and Semaphore classes.

System.Threading.Monitor is the direct equivalent of a monitor. The lock statement makes it very easy to use, it ensures the monitor is always exited without explicitly programming the Exit() call.

link|improve this answer
1  
Note that exiting a monitor if code throws an exception is not necessarily a good thing; the monitor was probably protecting a mutation to ensure that the result upon exiting the monitor was consistent; an exception is evidence that the mutation was only partially completed and therefore you've just unlocked access to inconsistent state. If the exception is caught and the program continues then you cannot rely upon the program state being consistent. – Eric Lippert Dec 31 '09 at 17:56
Very good point, I re-worded that. Thanks. – Hans Passant Dec 31 '09 at 19:23
Wait (pardon the pun). Are any of those actually a direct equivalent of a condition variable?? To my non-expert eye they're nothing like a condition variable. In fact I've seen a webpage that shows how to build a condition variable from windows kernel objects like auto-reset events, and it's a pretty complex process involving more than one such kernel object... – mackenir Mar 16 at 15:20
feedback

System.Threading.Monitor is one way (example within)

link|improve this answer
feedback

You can use the Lock object which acts as syntactic sugar for the Monitor class.

lock(someObject)
{
    // Thread safe code here.
}

http://msdn.microsoft.com/en-us/library/c5kehkcz%28VS.80%29.aspx

link|improve this answer
2  
One small correction, it is not an object, but a keyword, and is spelled lowercase, lock :) – Skurmedel Dec 31 '09 at 16:44
Thanks, been developing in VB.NET at work, so had SyncLock on the brain and just removed the Sync part heh. – Aequitarum Custos Dec 31 '09 at 16:52
feedback

As an alternative to ManualResetEvent and friends, Windows now provides native support for condition variables. I haven't benchmarked it myself, but there's a good chance your performance will improve when leveraging the native API.

Here's a Code Project article that explains how to access this (relatively new) construct from C#:

A .NET Wrapper for the Vista/Server 2008 Condition Variable

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.