vote up 1 vote down star

How can i combine two arrays in to a single array during compound selection ( without using Union ) ( The question was asked at interview).

    var num1 = new int[] { 12, 3, 4, 5 };
    var num2 = new int[] { 1, 33, 6, 10 };

I tried as

    var pairs = from a in num1 from b in num2  select new {combined={a,b}};

Expected: combined need to be {12,3,4,5,1,33,6,10}

flag

There are any number of ways of combining two arrays. Unless you specify what you want the result to be, it's hard to give an answer. – Jon Skeet Oct 16 at 18:45
Did the interviewer really want you to use Linq? I would guess they didn't, to see if you can do it by hand. – Frank Schwieterman Oct 16 at 18:52
oh! i see ! Thanks Frank – linqfying Oct 16 at 18:54

3 Answers

vote up 5 vote down check
num1.Concat( num2 );

I'm not sure if there is a related LINQ keyword.

link|flag
vote up 5 vote down

If you just want to combine 2 arrays into a new array which contains elements from both arrays then use concat.

var combined = num1.Concat(num2);
var combinedAsArray = combined.ToArray();
link|flag
Thank you very much. Tinister answered first ,May i tick his answer ? – linqfying Oct 16 at 19:09
@linqfying tick the answer you feel is best. Tinister beat me to the punch so I would tick his. – JaredPar Oct 16 at 19:57
Thanks for your openminded reply :)great! – linqfying Oct 18 at 6:49
vote up -1 vote down

var newArray = (from number in num1.Concat(num2) select number).ToArray();

link|flag
Thank you very much Greg – linqfying Oct 16 at 19:10
The linq construct does not add anything. 'num1.Concat(num2).ToArray()' is enough. – Johan Kullbom Oct 16 at 19:28
I agree it doesn't, but his question asked for a compound selection, which to me would imply a linq construct as opposed to just calling a linq extension method by itself. – Greg Andora Oct 16 at 20:20

Your Answer

Get an OpenID
or

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