When do LINQ queries actually run?
Options
- When they are iterated over in a foreach loop
- When calling the ToArray() method on the range variable
- When calling the ToList() method on the range variable
- All of the above
CORRECT ANSWER : All of the above
Write your comments