What I am looking for, is a way to dynamically reference data in a DataSet. I want to do this without binding to any controls. I used to do this all the time in VB6 (I almost never bound controls), because I knew how to directly reference the data. I thought of using an array for this, but not sure this is the best option. I really would like to perform calculations on the DataSet directly, then write the updated/added records back to the database. The user never needs to see or reference the actual data, so creating and binding objects just for the sake of doing updates to the data seems like redundant/useless work.
TIA