c# - Linq Compound selection -
How do I add an array during the combined selection ( without using the union ) ? (The question was said in the interview.)
var num1 = new int [] (12, 3, 4, 5}; var num2 = new int [] (1, 33, 6, 10};
I tried
number 1. concat (num2);
I'm not sure any related LINQ keyword is.
< / Div>
Comments
Post a Comment