I have List which contains IEnumerable objects :
List<IEnumerable> enumerables = new List<IEnumerable>();
There can be any number of IEnumerable objects, but every IEnumerable object have the same size as another objects.
Imagine I have sort of this :
[10,20,30],[40,50,60],[70,80,90]
I need to get elements from this List in next order as if that matrix is transposed:
[10,40,70],[20,50,80],[30,60,90]
How can i achieve this?
>` or `List
– Panagiotis Kanavos Jan 25 '21 at 20:58>`. Working with mixed types on a single "array" will result in problems though, as you'll have to check each object's type before trying to call any method on it