I have a C# dictionary, Dictionary that I need to be filtered based on a property of MyObject.
Dictionary
MyObject
For example, I want to
You can simply use the Linq where clause:
var filtered = from kvp in myDictionary where !kvp.Value.BooleanProperty select kvp