Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はデータセットを持っていて、それを取得します
var ds = data.tables[0]
特定の行のデータの出現回数を知りたい
Teams | Member Boys | John Boys | Dave Girls | Sarah
上記の例では、Boys の出現回数を取得したいと考えています。
これは DataSets Compute 関数で可能ですか?
data.tables[0].Compute("...","...")
これを試して
DataRow[] rows= ds.Select("Teams = 'Boys'"); Console.WriteLine(rows.Length.ToString())