0

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.

TheTechGuy
  • 16,560
  • 16
  • 115
  • 136

1 Answers1

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

Community
  • 1
  • 1
MatthewMartin
  • 32,326
  • 33
  • 105
  • 164