I have a dictionary of dictionaries I want to display in a data grid.
var data = new Dictionary<KeyTypeA, Dictionary<KeyTypeB, string>>();
The "inner" dictionaries all share the same keys of a given set of KeyTypeB
's which should become the row headers.
The question is related to this SO question, but the difference is that I don't know the keys until runtime.