No description
MfGames.Locking | ||
.editorconfig | ||
.gitattributes | ||
.gitignore | ||
LICENSE.txt | ||
MfGames.Locking.sln | ||
MfGames.Locking.sln.DotSettings | ||
README.md |
MfGames.Locking CIL
This a small collection of classes that provide some simplification while working with locking in C# applications.
//using MfGames.Locking;
ReaderWriterLockSlim locker;
using (new ReadLock(locker))
{
// Do something.
}