Selecting columns with linq with nested dictionary
- by Daniel A. White
How do I get all of the "columns" using linq from this dictionary.
Dictionary<int, Dictionary<int, string>> _cells;
where I can access a row this way
var someRow = _cells[2];