调试时,dataset中的数据存放在哪里
我正在调试,但找不到数据存储的位置。这是
这是我在 C# 代码中引用单元格的方式。
txtCompanyName.Text = aCustomerDS.Tables[0].Rows[0]["CompanyName"].ToString();
有人可以更深入地了解静态成员存储什么以及非静态成员存储什么。我自己很熟悉静态概念。
I am debugging and I can't find where the data is stored. Here is
This is how I reference the cells in C# code.
txtCompanyName.Text = aCustomerDS.Tables[0].Rows[0]["CompanyName"].ToString();
Can someone give more insight into, what static members store and what non-static. I am familiar with static concept myself.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
数据集的静态成员将显示对于整个应用程序域中的所有数据集都适用的内容。这是一个如此奇特的场景,我只能想象这不是你想要的。
我认为您正在尝试访问数据集可视化工具,即显示数据集中表格的单元格。
如何在调试时查看数据表
A static member of a dataset would show something that is true for all datasets in the entire appdomain. That is such a peculiar scenario, I can only imagine that that is not what you want.
I think you are trying to get at the dataset visualizer, i.e. to show the cells of a table in a dataset.
How to view a DataTable while debugging