List Transpose C# Zero Touch

Hi,
Is there a transpose class/method working with Zero Touch in any of the libraries?
In fact, I’m looking for a namespace containing that if there is any?

There’s no ‘transpose’ method in .NET if that’s what you’re after, and there is a reason since it can be achieved using a nested for loop where you index the inner arrays first and the outer arrays second.

Hi Thomas,
Good to know. It was just out o curiosity and completely makes sense.
Thank you for clarifying that.