在我的程序中,我有一個datagridview表c_tbl
,它從SQL Server獲取數據並填充datagridview。我有一個for循環遍歷每一行。現在我有一個switch語句,它應該檢查每行並獲取值,以便我可以比較它並在該行中添加其他數據。在switch語句中使用datagrid值
這是什麼樣子
for(int i=0; i<c_tbl.rows.count; i++){
switch("this is where i need the argument that will check the row and column value)
{
case "string value that gets compared"
//add in values to column on same row.
}
}
我本來有這樣的事情
switch(c_tbl.Column[0][i])
,但它不工作。
請明確界定***它不工作*** - 這是** **不是一個真正有用的「錯誤」的消息..... –
我發佈了下面的錯誤。對於那個很抱歉。 – dstew