No description
6f6a2f9bd3
# [1.1.0](https://gitlab.com/mfgames-cil/mfgames-locking-cil/compare/v1.0.0...v1.1.0) (2021-01-22) ### Features * making library available for .NET Core 5 ([ |
||
---|---|---|
scripts | ||
src | ||
.editorconfig | ||
.envrc | ||
.gitignore | ||
.gitlab-ci.yml | ||
.tool-versions | ||
LICENSE.txt | ||
MfGames.Locking.sln | ||
MfGames.Locking.sln.DotSettings | ||
package.json | ||
README.md | ||
yarn.lock |
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.
}