[System] Throw PlatformNotSupportedException if NetworkInformation.NetworkChange...
[mono-project.git] / mcs / tests / test-anon-30.cs
blob0c83462d519953b7ea0a706a18ec4eb8cb2ce64d
1 class X {
2 public bool eh;
5 static class Program {
6 delegate void D (X o);
7 static event D E;
9 public static void Main()
11 bool running = true;
13 E = delegate(X o) {
14 o.eh = false;
15 running = false;
18 running = true;