1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
using System; using System.Collections.Generic; class C { IEnumerable<int> Test () { Console.WriteLine ("init"); try { yield return 1; } finally { Console.WriteLine ("aa"); } yield return 2; } public static void Main () { } }