No description
3f1f50c34e
# 1.0.0 (2021-09-11) ### Features * initial commit ([ |
||
---|---|---|
.husky | ||
src/MfGames.IO | ||
.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.
}