T
tshad
I have the following in vb.net:
DataSetObj.Tables(0).Rows(i).ItemArray(1) =
UCase(DataSetObj.Tables(0).Rows(i).ItemArray(1))
I tried this is C#, but got the error that UCase and LCase don't exist.
DataSetObj.Tables[0].Rows.ItemArray[1] =
UCase(DataSetObj.Tables[0].Rows.ItemArray[1]);
How would I do this in C#?
Thanks,
Tom
DataSetObj.Tables(0).Rows(i).ItemArray(1) =
UCase(DataSetObj.Tables(0).Rows(i).ItemArray(1))
I tried this is C#, but got the error that UCase and LCase don't exist.
DataSetObj.Tables[0].Rows.ItemArray[1] =
UCase(DataSetObj.Tables[0].Rows.ItemArray[1]);
How would I do this in C#?
Thanks,
Tom