哪位帮我详细解释一下
ds.Tables [ "dsTable "].Rows [0][1] 这句什么意思?
[解决办法]
ds.Tables [ "dsTable "].Rows [0][1]取ds中名为dsTable的DataTable第一行第二列
一般用string value = ds.Tables [ "dsTable "].Rows [0][1].ToString();取这个值
发布时间: 2012-01-15 22:57:48 作者: rapoo
哪位帮我详细解释一下
ds.Tables [ "dsTable "].Rows [0][1] 这句什么意思?
[解决办法]
ds.Tables [ "dsTable "].Rows [0][1]取ds中名为dsTable的DataTable第一行第二列
一般用string value = ds.Tables [ "dsTable "].Rows [0][1].ToString();取这个值