You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Go to file
D. Moonfire 785b651951 feat: updating package dependencies 7 months ago
.config build: preparing project layout 7 months ago
scripts build: preparing project layout 7 months ago
src feat: updating package dependencies 7 months ago
tests feat: updating package dependencies 7 months ago
.editorconfig build: preparing project layout 7 months ago
.envrc build: preparing project layout 7 months ago
.gitignore build: preparing project layout 7 months ago
.prettierignore feat: initial commit 7 months ago
.tool-versions ci: install node for building 2 years ago
.woodpecker.yml build: preparing project layout 7 months ago
CODE-OF-CONDUCT.md feat: initial commit 7 months ago
LICENSE.txt feat: initial commit 7 months ago
MfGames.Locking.sln feat: updating package dependencies 7 months ago
MfGames.Locking.sln.DotSettings test: cleaning up tests for locking 2 years ago
NuGet.Config build: preparing project layout 7 months ago
README.md Initial commit. 5 years ago
flake.lock build: preparing project layout 7 months ago
flake.nix build: preparing project layout 7 months ago
lefthook.yml build: preparing project layout 7 months ago

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.
}