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
Dylan R. E. Moonfire 9347397e13 ci: install node for building 2021-01-21 18:25:40 -06:00
scripts build: adding versioning and updating 2021-01-21 18:02:19 -06:00
src chore: updating descriptions for NuGet 2021-01-21 18:16:01 -06:00
.editorconfig chore: cleaning up code and reformatting 2021-01-20 19:22:18 -06:00
.envrc feat: making library available for .NET Core 5 2021-01-20 20:54:03 -06:00
.gitignore build: adding versioning and updating 2021-01-21 18:02:19 -06:00
.gitlab-ci.yml ci: install node for building 2021-01-21 18:25:40 -06:00
.tool-versions ci: install node for building 2021-01-21 18:25:40 -06: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
README.md Initial commit. 2018-01-18 16:16:01 -06:00
package.json build: adding versioning and updating 2021-01-21 18:02:19 -06:00
yarn.lock build: adding versioning and updating 2021-01-21 18:02:19 -06:00

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