Oh here is another vb to c# conversion problem that I am having.

in vb I can do this:
VB Code:
  1. myStr = DataSet.Tables("MyTable").Rows(0).Item("CollumnName")
  2. 'or something close to that
now in c# i need a little assitance. I though it should be like this:
PHP Code:
myStr DataSet.Tables["MyTable"].Rows[0].Item["CollumnName"]
//the problem is there is not ITEM 
Does anyone know how to read a row of data out of a dataset in c#?

Jeremy