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
semantic-release-bot a9ff629ed2 chore(release): v1.0.1
## [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 ([2aa87a9](2aa87a9115))
2021-09-11 06:06:36 +00:00
.husky feat: initial commit 2021-09-11 00:54:27 -05:00
src build(nuget): adding directory path 2021-09-11 01:03:54 -05:00
.editorconfig feat: initial commit 2021-09-11 00:54:27 -05:00
.envrc feat: initial commit 2021-09-11 00:54:27 -05:00
.gitignore feat: initial commit 2021-09-11 00:54:27 -05:00
.gitlab-ci.yml feat: initial commit 2021-09-11 00:54:27 -05:00
.tool-versions feat: initial commit 2021-09-11 00:54:27 -05:00
CHANGELOG.md chore(release): v1.0.1 2021-09-11 06:06:36 +00:00
commitlint.config.js feat: initial commit 2021-09-11 00:54:27 -05:00
LICENSE.txt feat: initial commit 2021-09-11 00:54:27 -05:00
MfGames.IO.sln feat: initial commit 2021-09-11 00:54:27 -05:00
MfGames.IO.sln.DotSettings feat: initial commit 2021-09-11 00:54:27 -05:00
package-lock.json chore(release): v1.0.1 2021-09-11 06:06:36 +00:00
package.json chore(release): v1.0.1 2021-09-11 06:06:36 +00:00
README.md feat: initial commit 2021-09-11 00:54:27 -05:00
release.config.js build(nuget): updating paths for semantic-release 2021-09-11 00:59:32 -05:00

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.
}