LockerHelpers 2.0.181

This package has a SemVer 2.0.0 package version: 2.0.181+build.20260114024705.55d1030.
dotnet add package LockerHelpers --version 2.0.181
                    
NuGet\Install-Package LockerHelpers -Version 2.0.181
                    
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.181" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="LockerHelpers" Version="2.0.181" />
                    
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.181
                    
#r "nuget: LockerHelpers, 2.0.181"
                    
#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.181
                    
#: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.181
                    
Install as a Cake Addin
#tool nuget:?package=LockerHelpers&version=2.0.181
                    
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 is compatible.  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 is compatible.  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 is compatible.  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.181 30 1/14/2026
2.0.180 62 12/11/2025
2.0.179 67 12/3/2025
2.0.178 65 12/3/2025
2.0.177 71 12/2/2025
2.0.176 71 12/2/2025
2.0.175 63 12/1/2025
2.0.174 78 11/28/2025
2.0.173 76 11/28/2025
2.0.172 80 11/28/2025
2.0.171 73 11/26/2025
2.0.170 73 11/26/2025
2.0.169 79 11/25/2025
2.0.168 79 11/25/2025
2.0.167 80 11/12/2025
2.0.166 79 11/12/2025
2.0.165 94 11/7/2025
2.0.164 91 11/5/2025
2.0.163 90 11/2/2025
2.0.162 90 11/2/2025
2.0.161 78 10/15/2025
2.0.160 76 10/10/2025
2.0.159 81 10/10/2025
2.0.158 91 10/1/2025
2.0.157 92 9/30/2025
2.0.156 86 9/30/2025
2.0.155 82 9/24/2025
2.0.154 81 9/24/2025
2.0.153 86 9/10/2025
2.0.152 86 9/8/2025
2.0.151 90 9/5/2025
2.0.150 97 8/21/2025
2.0.149 87 8/20/2025
2.0.148 95 8/15/2025
2.0.147 108 8/9/2025
2.0.146 90 8/7/2025
2.0.145 102 8/6/2025
2.0.143 106 8/6/2025
2.0.142 82 7/30/2025
2.0.141 80 7/29/2025
2.0.140 151 5/27/2025
2.0.139 168 4/9/2025
2.0.138 195 3/25/2025
2.0.137 154 3/18/2025
2.0.136 197 3/13/2025
2.0.135 315 2/21/2025
2.0.134 312 1/28/2025
2.0.133 172 1/21/2025
2.0.132 195 1/17/2025
2.0.131 189 1/16/2025
2.0.130 202 1/13/2025
2.0.129 177 1/13/2025
2.0.128 190 1/10/2025
2.0.127 207 1/1/2025
2.0.126 175 12/30/2024
2.0.125 194 12/30/2024
2.0.124 209 12/27/2024
2.0.123 194 12/26/2024
2.0.122 193 12/19/2024
2.0.121 196 12/19/2024
2.0.120 203 12/18/2024
2.0.119 197 12/9/2024
2.0.118 199 12/6/2024
2.0.117 195 12/6/2024
2.0.116 219 12/5/2024
2.0.115 210 12/5/2024
2.0.114 221 12/4/2024
2.0.113 204 12/3/2024
2.0.112 189 12/3/2024
2.0.111 198 12/3/2024
2.0.110 204 12/3/2024
2.0.109 201 11/26/2024
2.0.108 173 11/26/2024
2.0.107 181 11/25/2024
2.0.106 180 11/25/2024
2.0.105 180 11/22/2024
2.0.104 167 11/22/2024
2.0.103 167 11/21/2024
2.0.102 188 11/21/2024
2.0.101 198 11/20/2024
2.0.100 168 11/20/2024
2.0.99 193 11/15/2024
2.0.98 187 11/14/2024
2.0.97 200 11/13/2024
2.0.96 201 11/11/2024
2.0.95 190 11/8/2024
2.0.94 192 11/7/2024
2.0.93 200 11/7/2024
2.0.92 204 11/6/2024
2.0.91 186 11/5/2024
2.0.90 192 10/31/2024
2.0.89 170 10/31/2024
2.0.88 169 10/30/2024
2.0.87 178 10/30/2024
2.0.86 187 10/30/2024
2.0.85 188 10/29/2024
2.0.84 175 10/28/2024
2.0.83 185 10/28/2024
2.0.82 193 10/28/2024
2.0.81 169 10/24/2024
2.0.80 186 10/24/2024
2.0.79 183 10/23/2024
2.0.78 192 10/23/2024
2.0.77 175 10/18/2024
2.0.76 163 10/18/2024
2.0.75 195 10/15/2024
2.0.74 196 10/15/2024
2.0.73 201 10/14/2024
2.0.72 175 10/14/2024
2.0.71 204 10/14/2024
2.0.70 189 10/8/2024
2.0.69 182 10/8/2024
2.0.68 218 10/7/2024
2.0.67 208 10/7/2024
2.0.66 186 10/7/2024
2.0.65 197 10/3/2024
2.0.64 199 10/3/2024
2.0.63 183 9/30/2024
2.0.62 163 9/30/2024
2.0.61 194 9/27/2024
2.0.60 195 9/26/2024
2.0.59 190 9/26/2024
2.0.58 183 9/25/2024
2.0.57 192 9/25/2024
2.0.56 199 9/24/2024
2.0.55 189 9/24/2024
2.0.54 193 9/23/2024
2.0.53 191 9/23/2024
2.0.52 198 9/20/2024
2.0.51 214 9/19/2024
2.0.50 192 9/18/2024
2.0.49 211 9/17/2024
2.0.48 195 9/17/2024
2.0.47 193 9/11/2024
2.0.46 202 9/11/2024
2.0.45 189 9/10/2024
2.0.43 210 9/6/2024
2.0.42 193 9/3/2024
2.0.41 213 8/30/2024
2.0.40 188 8/29/2024
2.0.39 196 8/26/2024
2.0.38 203 8/23/2024
2.0.37 195 8/23/2024
2.0.36 212 8/21/2024
2.0.35 199 8/21/2024
2.0.34 206 8/15/2024
2.0.33 194 8/15/2024
2.0.32 194 8/14/2024
2.0.31 209 8/14/2024
2.0.30 207 8/1/2024
2.0.29 191 7/31/2024
2.0.28 195 7/29/2024
2.0.27 198 7/29/2024
2.0.26 199 7/17/2024
2.0.25 178 7/17/2024
2.0.24 200 7/16/2024
2.0.23 194 7/16/2024
2.0.22 174 7/15/2024
2.0.21 198 7/15/2024
2.0.20 194 7/13/2024
2.0.19 209 7/12/2024
2.0.18 212 7/10/2024
2.0.16 212 7/9/2024
2.0.15 213 7/8/2024
2.0.14 191 7/8/2024
2.0.13 186 7/7/2024
2.0.12 186 7/2/2024
2.0.11 191 7/2/2024
2.0.10 205 7/1/2024
2.0.9 184 7/1/2024
2.0.8 203 6/30/2024
2.0.6 191 6/28/2024
2.0.5 264 10/4/2023
2.0.4 300 8/31/2023
2.0.3 251 8/29/2023
2.0.2 295 8/8/2023
2.0.1 275 7/11/2023
2.0.0 318 6/20/2023
1.0.6 844 9/8/2022
1.0.5 582 9/4/2022
1.0.4 580 9/4/2022
1.0.3 3,092 9/4/2022
1.0.2 3,121 3/7/2022
1.0.1 3,317 2/21/2022
1.0.0 913 2/19/2022

## New Version
* Bump `locker_helpers` from `2.0.180` to `2.0.181`. See [changelog](https://github.com/Kiryuumaru/LockerHelpers/compare/locker_helpers/2.0.180...locker_helpers/2.0.181)

## What's Changed
* Bump DisposableHelpers from 1.2.151 to 1.2.152 by @dependabot[bot] in https://github.com/Kiryuumaru/LockerHelpers/pull/201

**Full Changelog**: https://github.com/Kiryuumaru/LockerHelpers/compare/build.20251211021005.0e68d05...build.20260114024705.55d1030