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 just have a generic method that takes a params and returns it:
params
public static IList ToAnonymousList(params T[] items) { return items; }
So now you can say:
var list=ToAnonymousList ( new{A=1, B=2}, new{A=2, B=2} );