public class Item
{
public double findMe{ get; set; }
public int? iMayBeNull { get; set; }
}
public Dictionary<int, ICollection<Item>> TheDictionary{ get; set; }
...
TheDictionary dict = new Dictionary<int, ICollection<Item>>();
I am trying to find the minimum value of "findMe", where "iMayBeNull" is null in all collections of "dict".
I don’t seem to wrap my head around it.
Everyone is welcome any guide.
source
share