I was using two nullable int[]s:
int?[] OriginalPterodactylVals = new int?[NUMBER_OF_BABES_IN_TOYLAND];
int?[] ChangedPterodactylVals = new int?[NUMBER_OF_BABES_IN_TOYLAND];
…and this code to sync them up:
ChangedPterodactylVals.CopyTo(OriginalPterodactylVals, 0);
…but now I’ve changed the int[]s to Lists and haven’t yet found or figured out how to accomplish the same thing.
They will both have the same amount of values in the list at the time one is “copied and pasted” into the other.
Have you tried: