For #1 I would expect the array method would be faster simply due to the reduced code paths you have to traverse, but I could be wrong here.
#2. DataTable would be faster since DataView just eventually inserts the data into the DataTable, so it's just extra overhead (row abstraction is how DataView works, it keeps an array of row handles).
#3. Not sure on this one.
#4. Not sure on this one either, however the underlying data will be stored as int so I suspect int would be faster.
|