dataset

  • Thread starter Thread starter shapper
  • Start date Start date
S

shapper

Hello,

I have a dataset with only one record.

I need to access the value in each column given its name.

How can I do this?

Thanks,

Miguel
 
Hello,

I have a dataset with only one record.

I need to access the value in each column given its name.

How can I do this?

MyDataSet.Tables[0].Rows[1]["...."].ToString();
 
Back
Top