迭代 DataGridViewRow 列
如何迭代 DataGridViewRow
列?我只想获取我拥有的列数并遍历它们并获取值。
How can I iterate through DataGridViewRow
columns? I just want to get the number of columns that I have and go through them and get the values.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
Cells
属性获取行的所有值,并且列数等于单元格数
You can use
Cells
property to get all values row haveand number of columns is equal to number of cells