I have a situation in code where a Dictionary seemed like the best idea - I need a collection of these objects and I need them to be acces
Dictionary
class MappedValue { public string SomeString { get; set; } public bool SomeBool { get; set; } } Dictionary myList = new Dictionary;