Selecting columns with linq with nested dictionary
Posted
by Daniel A. White
on Stack Overflow
See other posts from Stack Overflow
or by Daniel A. White
Published on 2010-03-28T23:27:02Z
Indexed on
2010/03/28
23:33 UTC
Read the original article
Hit count: 258
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];
© Stack Overflow or respective owner