I have a List1 and a List2. List1 is very large and List2 has some elements from List1. To avoid looking for the entire List1 to make a modification and thus lose performance, I need to have a List2 in which I can change the data so that I also change in List1.
Example: My list one has 250000 elements. I need to change element 210100. If I can do this by changing a second list where I only have the data that I will change in the future, I gain more performance.
How can I do this?