DotNetExtensionLib 2.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package DotNetExtensionLib --version 2.0.0
                    
NuGet\Install-Package DotNetExtensionLib -Version 2.0.0
                    
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="DotNetExtensionLib" Version="2.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="DotNetExtensionLib" Version="2.0.0" />
                    
Directory.Packages.props
<PackageReference Include="DotNetExtensionLib" />
                    
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 DotNetExtensionLib --version 2.0.0
                    
#r "nuget: DotNetExtensionLib, 2.0.0"
                    
#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 DotNetExtensionLib@2.0.0
                    
#: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=DotNetExtensionLib&version=2.0.0
                    
Install as a Cake Addin
#tool nuget:?package=DotNetExtensionLib&version=2.0.0
                    
Install as a Cake Tool

Common extension methods such as Dictionary.ValueOrDefault or Enumerable.FindIndexOf(Func<T, bool>)

Product Compatible and additional computed target framework versions.
.NET 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 was computed.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net6.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
4.0.0 156 1/16/2025
3.0.0 183 4/25/2024
2.0.0 434 2/21/2023
1.4.0 564 6/30/2021
1.3.0 501 3/18/2021
1.2.0 749 9/18/2019
1.1.0 789 3/21/2019
1.0.1 778 3/21/2019
1.0.0 835 3/10/2019

2.0.0
* .NET 6 as the only target
* Removed VerboseDictionary as Dictionary<,> now throws exceptions containing the key.
1.4.0
* Added the VerboseDictionary class.
* Added .NET Core 3.1 and .NET 5 to the targets
1.3.0
* Changed ValueOrDefault to be an extension method of IReadOnlyDictionary so it can work with Dictionary as before but also custom dictionaries implementing IReadOnlyDictionary.
* Added Split extension method to IEnumerable.
* Removed .NET Framework 4.5.2 and 4.6.2 from the targets.
* Added .NET Framework 4.8 to the targets
1.2.0
* Added GetOrAdd extension method to the IDictionary.
1.1.0
* Replaced RegroupItems with ParseSeparatedValues. Added documentation.
1.0.1
* Added .NET Framework 4.5.2, 4.6.2, and 4.7.2 to the targets
1.0.0
* Initial Revision