What will the following code display?
public static IEnumerable<int> GetSmallNumbers() { try { yield return 1; yield return 2; } finally { Console.WriteLine("Foo"); } } void Main() { Console.WriteLine(GetSmallNumbers().First()); }
Solution
Last updated 5 years ago