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.
というタイトルの列の特定の行の値をどのように知ることができますかid:
id
row_index | id -----------+----- 0 | 54 1 | 34 2 | 12
select id where row_index = 1たとえば、34 という値を取得する必要があります。
select id where row_index = 1
これはdatagrid。
datagrid
これを探しているかどうか正確にはわかりませんが、とにかく、列名と行インデックスを指定することで特定のセル値にアクセスできます
var value = datagrid["id",rowindex].Value.ToString();