C# 数据表问题
我有一个填充数据表的数据库命令,我想根据 A:行的数字索引和 b,列的字符串名称获取数据表中条目的值。这就是我想要的,这怎么可能?
I have a database command that populates a DataTable I want to get the value of an entry in the Datatable, based on, A: The numeral index of the row, and b, the string name of the column. That's all I want, how is that possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
yourDatatable.Rows[rowIndex]["columnName"]
应该可以工作yourDatatable.Rows[rowIndex]["columnName"]
should workA
不是行索引。A
is not a row index.RowIndex
是数据表的索引属性,它返回DataRow
。 “MyColumnName”是 DataRow 的索引属性,以对象形式返回值。The
RowIndex
is an indexed property of the datatable which returns aDataRow
. "MyColumnName" is an indexed property of the DataRow, returning the value as an object.