1 using System
.Collections
.Generic
;
2 using System
.Reflection
;
3 using System
.Runtime
.CompilerServices
;
7 public static class Program
9 public static int Main ()
11 var m
= typeof (Program
).GetMethod ("Test");
12 var attr
= m
.GetCustomAttribute
<IteratorStateMachineAttribute
> ();
19 public static IEnumerable
<object> Test ()