LockerHelpers 2.0.161

This package has a SemVer 2.0.0 package version: 2.0.161+build.20251015021028.d31188b.
There is a newer version of this package available.
See the version list below for details.
dotnet add package LockerHelpers --version 2.0.161
                    
NuGet\Install-Package LockerHelpers -Version 2.0.161
                    
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.161" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="LockerHelpers" Version="2.0.161" />
                    
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.161
                    
#r "nuget: LockerHelpers, 2.0.161"
                    
#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.161
                    
#: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.161
                    
Install as a Cake Addin
#tool nuget:?package=LockerHelpers&version=2.0.161
                    
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 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 20 11/12/2025
2.0.166 23 11/12/2025
2.0.165 41 11/7/2025
2.0.164 43 11/5/2025
2.0.163 45 11/2/2025
2.0.162 43 11/2/2025
2.0.161 35 10/15/2025
2.0.160 33 10/10/2025
2.0.159 37 10/10/2025
2.0.158 48 10/1/2025
2.0.157 45 9/30/2025
2.0.156 40 9/30/2025
2.0.155 44 9/24/2025
2.0.154 40 9/24/2025
2.0.153 44 9/10/2025
2.0.152 41 9/8/2025
2.0.151 51 9/5/2025
2.0.150 49 8/21/2025
2.0.149 50 8/20/2025
2.0.148 53 8/15/2025
2.0.147 59 8/9/2025
2.0.146 50 8/7/2025
2.0.145 57 8/6/2025
2.0.143 60 8/6/2025
2.0.142 37 7/30/2025
2.0.141 35 7/29/2025
2.0.140 109 5/27/2025
2.0.139 129 4/9/2025
2.0.138 146 3/25/2025
2.0.137 112 3/18/2025
2.0.136 157 3/13/2025
2.0.135 270 2/21/2025
2.0.134 269 1/28/2025
2.0.133 130 1/21/2025
2.0.132 154 1/17/2025
2.0.131 147 1/16/2025
2.0.130 158 1/13/2025
2.0.129 139 1/13/2025
2.0.128 151 1/10/2025
2.0.127 162 1/1/2025
2.0.126 137 12/30/2024
2.0.125 154 12/30/2024
2.0.124 159 12/27/2024
2.0.123 152 12/26/2024
2.0.122 148 12/19/2024
2.0.121 151 12/19/2024
2.0.120 159 12/18/2024
2.0.119 158 12/9/2024
2.0.118 150 12/6/2024
2.0.117 156 12/6/2024
2.0.116 171 12/5/2024
2.0.115 167 12/5/2024
2.0.114 172 12/4/2024
2.0.113 166 12/3/2024
2.0.112 142 12/3/2024
2.0.111 154 12/3/2024
2.0.110 159 12/3/2024
2.0.109 160 11/26/2024
2.0.108 135 11/26/2024
2.0.107 145 11/25/2024
2.0.106 139 11/25/2024
2.0.105 140 11/22/2024
2.0.104 131 11/22/2024
2.0.103 128 11/21/2024
2.0.102 147 11/21/2024
2.0.101 157 11/20/2024
2.0.100 127 11/20/2024
2.0.99 149 11/15/2024
2.0.98 149 11/14/2024
2.0.97 156 11/13/2024
2.0.96 159 11/11/2024
2.0.95 154 11/8/2024
2.0.94 148 11/7/2024
2.0.93 150 11/7/2024
2.0.92 160 11/6/2024
2.0.91 145 11/5/2024
2.0.90 153 10/31/2024
2.0.89 125 10/31/2024
2.0.88 130 10/30/2024
2.0.87 138 10/30/2024
2.0.86 142 10/30/2024
2.0.85 152 10/29/2024
2.0.84 130 10/28/2024
2.0.83 144 10/28/2024
2.0.82 148 10/28/2024
2.0.81 126 10/24/2024
2.0.80 144 10/24/2024
2.0.79 143 10/23/2024
2.0.78 152 10/23/2024
2.0.77 131 10/18/2024
2.0.76 123 10/18/2024
2.0.75 154 10/15/2024
2.0.74 153 10/15/2024
2.0.73 154 10/14/2024
2.0.72 133 10/14/2024
2.0.71 153 10/14/2024
2.0.70 150 10/8/2024
2.0.69 146 10/8/2024
2.0.68 174 10/7/2024
2.0.67 162 10/7/2024
2.0.66 144 10/7/2024
2.0.65 153 10/3/2024
2.0.64 155 10/3/2024
2.0.63 139 9/30/2024
2.0.62 118 9/30/2024
2.0.61 151 9/27/2024
2.0.60 150 9/26/2024
2.0.59 150 9/26/2024
2.0.58 144 9/25/2024
2.0.57 151 9/25/2024
2.0.56 157 9/24/2024
2.0.55 143 9/24/2024
2.0.54 153 9/23/2024
2.0.53 153 9/23/2024
2.0.52 154 9/20/2024
2.0.51 171 9/19/2024
2.0.50 153 9/18/2024
2.0.49 166 9/17/2024
2.0.48 154 9/17/2024
2.0.47 152 9/11/2024
2.0.46 163 9/11/2024
2.0.45 147 9/10/2024
2.0.43 169 9/6/2024
2.0.42 147 9/3/2024
2.0.41 168 8/30/2024
2.0.40 149 8/29/2024
2.0.39 158 8/26/2024
2.0.38 162 8/23/2024
2.0.37 153 8/23/2024
2.0.36 172 8/21/2024
2.0.35 151 8/21/2024
2.0.34 164 8/15/2024
2.0.33 157 8/15/2024
2.0.32 153 8/14/2024
2.0.31 167 8/14/2024
2.0.30 166 8/1/2024
2.0.29 142 7/31/2024
2.0.28 153 7/29/2024
2.0.27 161 7/29/2024
2.0.26 159 7/17/2024
2.0.25 132 7/17/2024
2.0.24 159 7/16/2024
2.0.23 151 7/16/2024
2.0.22 136 7/15/2024
2.0.21 154 7/15/2024
2.0.20 154 7/13/2024
2.0.19 159 7/12/2024
2.0.18 164 7/10/2024
2.0.16 176 7/9/2024
2.0.15 168 7/8/2024
2.0.14 143 7/8/2024
2.0.13 145 7/7/2024
2.0.12 145 7/2/2024
2.0.11 142 7/2/2024
2.0.10 159 7/1/2024
2.0.9 141 7/1/2024
2.0.8 161 6/30/2024
2.0.6 150 6/28/2024
2.0.5 250 10/4/2023
2.0.4 284 8/31/2023
2.0.3 233 8/29/2023
2.0.2 277 8/8/2023
2.0.1 251 7/11/2023
2.0.0 302 6/20/2023
1.0.6 821 9/8/2022
1.0.5 558 9/4/2022
1.0.4 552 9/4/2022
1.0.3 3,071 9/4/2022
1.0.2 3,094 3/7/2022
1.0.1 3,288 2/21/2022
1.0.0 886 2/19/2022

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

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

**Full Changelog**: https://github.com/Kiryuumaru/LockerHelpers/compare/build.20251010021519.9ec7ea7...build.20251015021028.d31188b