No description
6957dc43c5
## [1.1.3](https://gitlab.com/mfgames-cil/mfgames-locking-cil/compare/v1.1.2...v1.1.3) (2021-09-04) ### Bug Fixes * working on pushing ([ |
||
---|---|---|
.husky | ||
src | ||
.editorconfig | ||
.envrc | ||
.gitignore | ||
.gitlab-ci.yml | ||
.tool-versions | ||
CHANGELOG.md | ||
commitlint.config.js | ||
LICENSE.txt | ||
MfGames.Locking.sln | ||
MfGames.Locking.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.
}