I’m looking for something similar to List<T>, that would allow me to have multiple T. For example: List<TabItem, DataGrid, int, string, ...> = new List<TabItem, DataGrid, int, string, ...>().
I’m looking for something similar to List<T> , that would allow me to have
Share
If you are using .NET 4, you could have a
List<Tuple<T1, T2, ...>>Otherwise, your choice is to implement your own type.