vote up 4 vote down star
1

I got a linq query who returns a IEnumarable<List<int>> but i need to return, only List<int> so i want to merge all my record in my IEnumerable<List<int>> to only one array.

Example :

IEnumerable<List<int>> iList = from number in (from no in Method() select no) select number;

I want to take all my result IEnumerable<List<int>> to only one List<int>

Hence, from source arrays: [1,2,3,4] and [5,6,7]

I want only one array [1,2,3,4,5,6,7]

Thanks

flag

5 Answers

vote up 10 vote down check

Try SelectMany()

var result = iList.SelectMany( i => i );
link|flag
Thanks it's work – Cédric Boivin Oct 19 at 19:52
vote up 7 vote down

With query syntax:

var values =
from inner in outer
from value in inner
select value;
link|flag
1  
+1 for the alternate syntax – Tim Jarvis Oct 19 at 19:57
vote up 2 vote down
iList.SelectMany(x => x).ToArray()
link|flag
+1 for getting the array part correct which everyone else missed. – recursive Oct 19 at 20:05
vote up 0 vote down

If you have a List<List<int>> k you can do

List<int> flatList= k.SelectMany( v => v).ToList();
link|flag
vote up 3 vote down

Like this?

var iList = Method().SelectMany(n => n);
link|flag
Yes thanks for your answer to – Cédric Boivin Oct 19 at 19:53

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.