C# DataGridView.Rows.ToString()
我试图将每一行的值存储在一个字符串中。
如果我尝试执行 DataGridView.Rows.ToString()
,我会得到
System.Windows.Forms.DataGridViewRowCollection
什至不接近我需要的东西。
有什么想法吗?
I am trying to store the values of each of my rows in a string.
If I try to do DataGridView.Rows.ToString()
I get
System.Windows.Forms.DataGridViewRowCollection
Not even close to what I need.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我认为你正在寻找每行的东西。如果是这样,我建议如下。
I think you're looking for something on a per row basis. If so, I suggest the following.
你需要做这样的事情:
编辑我没有运行这个来检查它是否运行,但它至少应该给你一个起点。另外,这将为您提供所有行。如果您只需要一行,请将变量 row 更改为您需要的行号(请记住它是从零开始的)。
You need to do something like this:
EDIT I didn't run this through to check that it runs but it should at least give you a starting point. Also, this will give you all rows. If you want just one row, change the variable row to the row number you need (keep in mind that it is zero-based).
使用 foreach 语句迭代 Datagridview 中的每一行。
Use the for each statement to iterate through each row in the Datagridview.
就像上面的代码一样。请原谅在 iPad 上输入的格式。
Something like the code above. Excuse the formatting typed on iPad.