I need to compare an original value from a collection of controls (the Text value, converted to ints of 0..3, to be specific) with the updated values.
Which is more suitable (List or int[]) for such comparisons?
I’ll need to compare each element with its “companion” element in the other list or array.
Internally
Listalso uses an array (a dynamically resizing array that is), so as far as operations go, they are the same.