mfgames-cil/src/MfGames.Locking
2024-04-20 23:02:38 -05:00
..
MfGames.Locking.csproj fix: updating package dependencies 2024-04-20 23:02:38 -05:00
NestableReadLock.cs chore: switching to mfgames-project-setup-flake + reformat 2024-03-05 23:15:03 -06:00
NestableUpgradableReadLock.cs chore: switching to mfgames-project-setup-flake + reformat 2024-03-05 23:15:03 -06:00
NestableWriteLock.cs chore: switching to mfgames-project-setup-flake + reformat 2024-03-05 23:15:03 -06:00
ReadLock.cs chore: switching to mfgames-project-setup-flake + reformat 2024-03-05 23:15:03 -06:00
README.md docs: updating read mes 2023-07-11 08:03:46 -05:00
UpgradableLock.cs chore: switching to mfgames-project-setup-flake + reformat 2024-03-05 23:15:03 -06:00
WriteLock.cs chore: switching to mfgames-project-setup-flake + reformat 2024-03-05 23:15:03 -06: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.
}