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 d83703f309 feat: rebuilding as .NET Core 2.1 library 2018-07-17 13:13:08 -05:00
src feat: rebuilding as .NET Core 2.1 library 2018-07-17 13:13:08 -05:00
.editorconfig feat: rebuilding as .NET Core 2.1 library 2018-07-17 13:13:08 -05:00
.gitignore feat: rebuilding as .NET Core 2.1 library 2018-07-17 13:13:08 -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 feat: rebuilding as .NET Core 2.1 library 2018-07-17 13:13:08 -05:00
README.md Initial commit. 2018-01-18 16:16:01 -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.
}