private static void WhereDemo(List<Order> orders) | |
{ | |
var ordersWithQuantityOver30 = orders.Where(order => order.Quantity > 30); | |
PrintOrders(ordersWithQuantityOver30); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment