LockerHelpers 2.0.5

There is a newer version of this package available.
See the version list below for details.
dotnet add package LockerHelpers --version 2.0.5
                    
NuGet\Install-Package LockerHelpers -Version 2.0.5
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="LockerHelpers" Version="2.0.5" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="LockerHelpers" Version="2.0.5" />
                    
Directory.Packages.props
<PackageReference Include="LockerHelpers" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add LockerHelpers --version 2.0.5
                    
#r "nuget: LockerHelpers, 2.0.5"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package LockerHelpers@2.0.5
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=LockerHelpers&version=2.0.5
                    
Install as a Cake Addin
#tool nuget:?package=LockerHelpers&version=2.0.5
                    
Install as a Cake Tool

Locker Helpers

Provides helpers for execution locking mechanism. Can be used for heavy multi threading operations.

NuGets

Name Info
LockerHelpers NuGet

Installation

// Install release version
Install-Package LockerHelpers

// Install pre-release version
Install-Package LockerHelpers -pre

Supported frameworks

.NET Standard 2.0 and above - see https://github.com/dotnet/standard/blob/master/docs/versions.md for compatibility matrix

Usage

RWLock Sample

using LockerHelpers;

namespace YourNamespace
{
    public class SafeList<T>
    {
        private List<T> list = new List<T>;
        private RWLock rwLock = new RWLock();

        public int Count
        {
            get
            {
                return rwLock.LockRead(() => list.Count);
            }
        }

        public void SafeAdd(T value)
        {
            rwLock.LockWrite(() => list.Add(value));
        }

        public void SafeRemove(T value)
        {
            rwLock.LockWrite(() => list.Remove(value));
        }
    }
}

Want To Support This Project?

All I have ever asked is to be active by submitting bugs, features, and sending those pull requests down!.

paypal

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on LockerHelpers:

Package Downloads
ObservableHelpers

Observable helpers with short-and-easy and UI-safe property implementations. Can be used for any MVVM software architectural applications.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2.0.167 33 11/12/2025
2.0.166 36 11/12/2025
2.0.165 47 11/7/2025
2.0.164 46 11/5/2025
2.0.163 48 11/2/2025
2.0.162 46 11/2/2025
2.0.161 40 10/15/2025
2.0.160 37 10/10/2025
2.0.159 40 10/10/2025
2.0.158 51 10/1/2025
2.0.157 49 9/30/2025
2.0.156 43 9/30/2025
2.0.155 48 9/24/2025
2.0.154 43 9/24/2025
2.0.153 47 9/10/2025
2.0.152 45 9/8/2025
2.0.151 54 9/5/2025
2.0.150 52 8/21/2025
2.0.149 53 8/20/2025
2.0.148 56 8/15/2025
2.0.147 62 8/9/2025
2.0.146 53 8/7/2025
2.0.145 60 8/6/2025
2.0.143 64 8/6/2025
2.0.142 40 7/30/2025
2.0.141 38 7/29/2025
2.0.140 112 5/27/2025
2.0.139 133 4/9/2025
2.0.138 150 3/25/2025
2.0.137 115 3/18/2025
2.0.136 159 3/13/2025
2.0.135 274 2/21/2025
2.0.134 272 1/28/2025
2.0.133 133 1/21/2025
2.0.132 157 1/17/2025
2.0.131 151 1/16/2025
2.0.130 161 1/13/2025
2.0.129 142 1/13/2025
2.0.128 154 1/10/2025
2.0.127 165 1/1/2025
2.0.126 140 12/30/2024
2.0.125 157 12/30/2024
2.0.124 162 12/27/2024
2.0.123 155 12/26/2024
2.0.122 152 12/19/2024
2.0.121 154 12/19/2024
2.0.120 163 12/18/2024
2.0.119 161 12/9/2024
2.0.118 153 12/6/2024
2.0.117 159 12/6/2024
2.0.116 175 12/5/2024
2.0.115 170 12/5/2024
2.0.114 178 12/4/2024
2.0.113 169 12/3/2024
2.0.112 145 12/3/2024
2.0.111 157 12/3/2024
2.0.110 163 12/3/2024
2.0.109 163 11/26/2024
2.0.108 138 11/26/2024
2.0.107 148 11/25/2024
2.0.106 142 11/25/2024
2.0.105 144 11/22/2024
2.0.104 134 11/22/2024
2.0.103 131 11/21/2024
2.0.102 150 11/21/2024
2.0.101 161 11/20/2024
2.0.100 130 11/20/2024
2.0.99 152 11/15/2024
2.0.98 152 11/14/2024
2.0.97 159 11/13/2024
2.0.96 162 11/11/2024
2.0.95 157 11/8/2024
2.0.94 152 11/7/2024
2.0.93 154 11/7/2024
2.0.92 163 11/6/2024
2.0.91 148 11/5/2024
2.0.90 156 10/31/2024
2.0.89 128 10/31/2024
2.0.88 133 10/30/2024
2.0.87 143 10/30/2024
2.0.86 145 10/30/2024
2.0.85 155 10/29/2024
2.0.84 133 10/28/2024
2.0.83 147 10/28/2024
2.0.82 152 10/28/2024
2.0.81 129 10/24/2024
2.0.80 148 10/24/2024
2.0.79 146 10/23/2024
2.0.78 155 10/23/2024
2.0.77 134 10/18/2024
2.0.76 126 10/18/2024
2.0.75 157 10/15/2024
2.0.74 156 10/15/2024
2.0.73 157 10/14/2024
2.0.72 136 10/14/2024
2.0.71 158 10/14/2024
2.0.70 155 10/8/2024
2.0.69 150 10/8/2024
2.0.68 177 10/7/2024
2.0.67 165 10/7/2024
2.0.66 147 10/7/2024
2.0.65 156 10/3/2024
2.0.64 158 10/3/2024
2.0.63 142 9/30/2024
2.0.62 121 9/30/2024
2.0.61 154 9/27/2024
2.0.60 154 9/26/2024
2.0.59 153 9/26/2024
2.0.58 149 9/25/2024
2.0.57 154 9/25/2024
2.0.56 160 9/24/2024
2.0.55 147 9/24/2024
2.0.54 156 9/23/2024
2.0.53 157 9/23/2024
2.0.52 157 9/20/2024
2.0.51 174 9/19/2024
2.0.50 156 9/18/2024
2.0.49 169 9/17/2024
2.0.48 157 9/17/2024
2.0.47 155 9/11/2024
2.0.46 166 9/11/2024
2.0.45 150 9/10/2024
2.0.43 172 9/6/2024
2.0.42 150 9/3/2024
2.0.41 172 8/30/2024
2.0.40 152 8/29/2024
2.0.39 161 8/26/2024
2.0.38 165 8/23/2024
2.0.37 156 8/23/2024
2.0.36 176 8/21/2024
2.0.35 154 8/21/2024
2.0.34 167 8/15/2024
2.0.33 160 8/15/2024
2.0.32 156 8/14/2024
2.0.31 171 8/14/2024
2.0.30 169 8/1/2024
2.0.29 146 7/31/2024
2.0.28 157 7/29/2024
2.0.27 165 7/29/2024
2.0.26 162 7/17/2024
2.0.25 135 7/17/2024
2.0.24 163 7/16/2024
2.0.23 155 7/16/2024
2.0.22 139 7/15/2024
2.0.21 157 7/15/2024
2.0.20 157 7/13/2024
2.0.19 162 7/12/2024
2.0.18 167 7/10/2024
2.0.16 179 7/9/2024
2.0.15 171 7/8/2024
2.0.14 146 7/8/2024
2.0.13 148 7/7/2024
2.0.12 148 7/2/2024
2.0.11 145 7/2/2024
2.0.10 163 7/1/2024
2.0.9 144 7/1/2024
2.0.8 165 6/30/2024
2.0.6 153 6/28/2024
2.0.5 251 10/4/2023
2.0.4 285 8/31/2023
2.0.3 234 8/29/2023
2.0.2 278 8/8/2023
2.0.1 252 7/11/2023
2.0.0 303 6/20/2023
1.0.6 824 9/8/2022
1.0.5 560 9/4/2022
1.0.4 554 9/4/2022
1.0.3 3,072 9/4/2022
1.0.2 3,097 3/7/2022
1.0.1 3,290 2/21/2022
1.0.0 888 2/19/2022

* Updated dependencies