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

15 lines
274 B
Markdown
Raw Normal View History

2021-09-11 05:54:27 +00: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.
}
```