BiMap 1.0.0
Simple Generic Bidirectional Map which has GetKey GetValue and Add functions.
Install-Package BiMap -Version 1.0.0
dotnet add package BiMap --version 1.0.0
<PackageReference Include="BiMap" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add BiMap --version 1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
BiMap
Simple Generic Bidirectional Map for c#
Usage
BiMap<string,int> map = new BiMap();
map.add("one", 1);
map.GetKey(1);// return "one"
map.GetValue("one"); //return 1
BiMap
Simple Generic Bidirectional Map for c#
Usage
BiMap<string,int> map = new BiMap();
map.add("one", 1);
map.GetKey(1);// return "one"
map.GetValue("one"); //return 1
Release Notes
Simplest first version contains GetKey GetValue and Add functions.
Dependencies
-
.NETCoreApp 3.0
- No dependencies.
Used By
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version History
Version | Downloads | Last updated |
---|---|---|
1.0.0 | 226 | 8/6/2019 |