Skip to content

risadams/HistoricalDictionary

Repository files navigation

HistoricalDictionary

Introduction

This is a lightweight library to add a history state to a dictionary.

Installation

via nuget.org: https://www.nuget.org/packages/HistoricalDictionary/1.0.0

Example

var history = new HistoricalDictionary<string, string>();
history.Add("key1", "value1");
history.Add("key1", "value2", DateTime.Now);

var value = history.Get("key1");
var value = history.Get("key1", DateTime.Now);

Contribute

If you think this could be better, please open an issue!

Please note that all interactions in this organization fall under our Code of Conduct.

License

MIT © 1996+ Ris Adams

About

A .NET data structure library to track Key/Value changes over time.

Topics

Resources

License

Code of conduct

Contributing

Security policy

Stars

Watchers

Forks

Sponsor this project

 

Packages

 
 
 

Contributors

Languages

Generated from risadams/repo-template