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
2021-01-21 17:33:53 -06:00
src test: cleaning up tests for locking 2021-01-21 17:33:53 -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 feat: rebuilding as .NET Core 2.1 library 2018-07-17 13:13:08 -05:00
.tool-versions feat: making library available for .NET Core 5 2021-01-20 20:54:03 -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

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