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.
mfgames-io-cil/README.md
Dylan R. E. Moonfire 5adb9ccc52 feat: initial commit
2021-09-11 00:54:27 -05:00

15 lines
274 B
Markdown

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