This works in VB
strFullName = ds.Tables(0).Rows(0).Item(0)
However when I try this in C#
FullName = ds.Tables[0].Rows[0] there is no Item property available what gives.
In C# I have my dataset declared DataSet ds = new DataSet();
Printable View
This works in VB
strFullName = ds.Tables(0).Rows(0).Item(0)
However when I try this in C#
FullName = ds.Tables[0].Rows[0] there is no Item property available what gives.
In C# I have my dataset declared DataSet ds = new DataSet();
I think this is the answer
FullName = ds.Tables[0].Row[0][0].Tostring();