日期:2014-05-19  浏览次数:20697 次

哪位帮我详细解释一下
ds.Tables   [ "dsTable "].Rows   [0][1]   这句什么意思?

------解决方案--------------------
ds.Tables [ "dsTable "].Rows [0][1]取ds中名为dsTable的DataTable第一行第二列

一般用string value = ds.Tables [ "dsTable "].Rows [0][1].ToString();取这个值