This repository has been archived on 2023-02-02. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
2022-09-05 22:54:49 -05:00
.config build: preparing project layout 2022-09-05 22:54:49 -05:00
.husky build: working on build and ci 2021-09-03 21:33:54 -05:00
scripts build: preparing project layout 2022-09-05 22:54:49 -05:00
src fix(build): fixing issues with deployment 2021-09-11 14:05:45 -05:00
.editorconfig build: preparing project layout 2022-09-05 22:54:49 -05:00
.envrc build: preparing project layout 2022-09-05 22:54:49 -05:00
.gitignore build: preparing project layout 2022-09-05 22:54:49 -05:00
.tool-versions ci: install node for building 2021-01-21 18:25:40 -06:00
.woodpecker.yml build: preparing project layout 2022-09-05 22:54:49 -05:00
commitlint.config.js build: working on build and ci 2021-09-03 21:33:54 -05:00
flake.lock build: preparing project layout 2022-09-05 22:54:49 -05:00
flake.nix build: preparing project layout 2022-09-05 22:54:49 -05:00
lefthook.yml build: preparing project layout 2022-09-05 22:54:49 -05:00
LICENSE.txt Initial commit. 2018-01-18 16:16:01 -06:00
MfGames.Locking.sln feat: rebuilding as .NET Core 2.1 library 2018-07-17 13:13:08 -05:00
MfGames.Locking.sln.DotSettings test: cleaning up tests for locking 2021-01-21 17:33:53 -06:00
NuGet.Config build: preparing project layout 2022-09-05 22:54:49 -05:00
package-lock.json chore(release): v1.1.5 2021-09-11 19:01:55 +00:00
package.json chore(release): v1.1.5 2021-09-11 19:01:55 +00:00
README.md Initial commit. 2018-01-18 16:16:01 -06:00
release.config.js build: preparing project layout 2022-09-05 22:54:49 -05:00

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