I have a List<Tuple<A,B>> and would like to know if there is a way in LINQ to return Tuple<List<A>,List<B>>
This is similar to the following Python question: Unpacking a list / tuple of pairs into two lists / tuples
I have a List<Tuple<A,B>> and would like to know if there is a way in LINQ to return Tuple<List<A>,List<B>>
This is similar to the following Python question: Unpacking a list / tuple of pairs into two lists / tuples