Select from following answers:- Take and Skip
- SelectMany
- Except
- All Above
SelectMany projects a single output element into many output elements.
Use Except when you have a sequence of elements and you want to find out which elements don't exist in a second sequence.
Take takes x elements from the sequence. Use this in conjunction with the Skip method to skip over elements you've already seen.
Show Correct Answer
Asked In: Many Interviews |
Alert Moderator