hi all,
In vb.net I am getting the column values from a filled dataset by:
clientname=dataset.Tables(0).Rows(0).Item("ClientName"
I am hopeing that .Net framework brings the standard and be able to do it same in c#. But not really ... The 'Item' doesn't exist in Rows(0).
dataset.Tables[0].Rows[0].?? //No item here??
My questions?
1- Why its differnt in c# and Vb.net while in same .Net framework Object Model?
2-How can do the same thing in C#?
regards
In vb.net I am getting the column values from a filled dataset by:
clientname=dataset.Tables(0).Rows(0).Item("ClientName"
I am hopeing that .Net framework brings the standard and be able to do it same in c#. But not really ... The 'Item' doesn't exist in Rows(0).
dataset.Tables[0].Rows[0].?? //No item here??
My questions?
1- Why its differnt in c# and Vb.net while in same .Net framework Object Model?
2-How can do the same thing in C#?
regards