Added a C# port of my new Variegator collection, a MultiDictionary that resolves ambiguities by picking a random value or providing the least recently used one, very useful for returning varying responses

git-svn-id: file:///srv/devel/repo-conversion/nusu@286 d2e56fa2-650e-0410-a79f-9358c0239efd
This commit is contained in:
Markus Ewald 2013-06-27 16:05:54 +00:00
parent 4b94bdd1a5
commit 2462dd6dc4
6 changed files with 410 additions and 9 deletions

View file

@ -290,7 +290,7 @@ namespace Nuclex.Support.Collections {
}
}
/// <summary>Number of elements contained in the Dictionary</summary>
/// <summary>Number of elements contained in the multi dictionary</summary>
public int Count {
get { return this.count; }
}