This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private static void SelectManyDemo(List<Order> orders) | |
{ | |
var firstOrder = orders.Take(1); | |
var lastOrder = orders.TakeLast(1); | |
var firstAndLastOrders = new [] {firstOrder, lastOrder}.SelectMany(order => order); | |
PrintOrders(firstAndLastOrders); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment