I’m just starting to learn LINQ,
I’m wondering if it would be possible to group the elements in 3 different stacks using LINQ.
this is what I have, could it be possible to add more than one array in the from clause, and how?
var uniqueValues =
from n in valuesStack.ToArray()
group n by n into nGroup
select nGroup.Key;
You can
Unionthe stacks together.