I have 3 types, (TCPClient, string, class)
Note that the class is defined at a different time to the others
I would like these to be linked together, i.e. I have 1 of these values and can get the others from that – something similar to Hashtables but with 3 values instead of 2
I have thought about multidimensional arrays, but i have been told in the past to avoid these if possible
What would be the best way to do this?
It seems that the 3 are related in some way and work together for one purpose, so how about putting them in a class and using a List of that class?