I need to create a List<> of pairs of my classes. such as:
List<Class1, Class2>
How would you do it? I can not use the "Pair" datatype because it's in system.web.UI.
Would you create a list of arrays? Create a struct of both classes and add them to a list?
Is there another way I don't know of and I'm just a noob?
Note: I don't want the list to auto-sort in any way.