1 // Compiler options: -unsafe
5 unsafe delegate void Foo (void* dummy
);
6 static unsafe void FooImplementation (void* dummy
)
10 static unsafe Foo Bar
= new Foo (FooImplementation
);
15 unsafe int*[] data
= new int*[16];
17 public static void Main ()