remove debug writelines
[mcs.git] / tests / test-417.cs
blob590dbb1a9d2ca71611b7d98dc5f62565020f3028
1 // Compiler options: -r:test-417-lib.dll
3 using System;
4 using blah;
6 namespace blah2
9 public class MyClass
11 public event MyFunnyDelegate DoSomething;
13 public void DoSomethingFunny()
15 if (DoSomething != null) DoSomething(this, "hello there", "my friend");
18 public static void Main(string[] args)
20 MyClass mc = new MyClass();
21 mc.DoSomethingFunny();