IndiePortable.Collections 0.1.1

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

A cross-platform extension to the default set of collections in the System.Collections namespace providing generic array-based lists and dictionaries.

The DynamicArray<T> class provides an efficient dynamic-sized list.

The ObservableDynamicArray<T> class derives from the DynamicArray<T> class and includes notification.

The ReadOnlyObservableDynamicArray<T> class represents a read-only dynamic array with a backing ObservableDynamicArray<T> and notification.

The ArrayDictionary<TKey, TValue> class provides a hashtable implementation based on arrays.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on IndiePortable.Collections:

Package Downloads
IndiePortable.Communication

Represents the base library for the IndiePortable Communication library family.

IndiePortable.Communication.UniversalWindows

Provides an implementation of the Communication library for the Universal Windows Platform, including listeners and connections for the TCP protocol.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.2.8 2,551 1/19/2017
0.2.7 1,627 11/28/2016
0.2.6.1 1,355 11/23/2016
0.2.6 1,773 11/23/2016
0.2.5 2,297 10/20/2016
0.2.4 3,126 9/20/2016
0.2.3 1,390 8/14/2016
0.2.2 1,866 7/24/2016
0.2.1 1,641 7/23/2016
0.2.0 1,852 7/22/2016
0.1.5 1,206 6/24/2016
0.1.4 1,643 6/24/2016
0.1.1 1,641 6/19/2016
0.1.0 1,447 6/16/2016

- Stability Improvements
- Fixed a bug that sometimes threw an exception if a ReadOnlyObservableCollection was enumerated by WPF / UWP.
- Bugfixes