Sometimes i need to use a Tuple, for example i have list of tanks and their target tanks (they chase after them or something like that ) :
List
You could use a List.
var myList = new List(); myList.Add(new {Tank = new Tank(), AttackingTank = new Tank()}); Console.WriteLine("AttackingTank: {0}", myList[0].AttackingTank);