调试时,dataset中的数据存放在哪里

发布于 2024-12-08 12:36:08 字数 279 浏览 0 评论 0原文

我正在调试,但找不到数据存储的位置。这是

在此处输入图像描述

这是我在 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

enter image description here

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

-柠檬树下少年和吉他 2024-12-15 12:36:08

数据集的静态成员将显示对于整个应用程序域中的所有数据集都适用的内容。这是一个如此奇特的场景,我只能想象这不是你想要的。

我认为您正在尝试访问数据集可视化工具,即显示数据集中表格的单元格。

如何在调试时查看数据表

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文