2
私はExcelファイルにアクセスするためにスプレッドシートライトライブラリを使用しています。拡張メソッドとラムダ式
次の構文を拡張メソッドとラムダ式で短縮するにはどうすればよいですか?ブール値ですべてのセルを数えたいと思います。
Dictionary<int, Dictionary<int, SLCell>> cells = sl.GetCells();
int nCount = 0;
foreach (Dictionary<int, SLCell> Value in cells.Values)
{
foreach (SLCell Cell in Value.Values)
{
if (Cell.DataType == CellValues.Boolean)
{
nCount++;
}
}
}