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();