No description
a9ff629ed2
## [1.0.1](https://gitlab.com/mfgames-cil/mfgames-io-cil/compare/v1.0.0...v1.0.1) (2021-09-11) ### Bug Fixes * updating NuGet description ([ |
||
---|---|---|
.husky | ||
src | ||
.editorconfig | ||
.envrc | ||
.gitignore | ||
.gitlab-ci.yml | ||
.tool-versions | ||
CHANGELOG.md | ||
commitlint.config.js | ||
LICENSE.txt | ||
MfGames.IO.sln | ||
MfGames.IO.sln.DotSettings | ||
package-lock.json | ||
package.json | ||
README.md | ||
release.config.js |
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.
}