views:

83

answers:

1

I think I am having a brain fart.

This sould be a very simple question: does ReaderWriterLockSlim IMPLEMENT the single writer concept, or does it REQUIRE a single writer thread?

+1  A: 

It ensures that protected resource can have either one writer thread or multiple reader threads. So it implements the single writer concept.

Greg Beech
Thanks. I couldn't believe I had to ask that question.
Jeff Meatball Yang