Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

27 lines
393 B
C#

// Compiler options: -r:test-417-lib.dll
using System;
using blah;
namespace blah2
{
public class MyClass
{
public event MyFunnyDelegate DoSomething;
public void DoSomethingFunny()
{
if (DoSomething != null) DoSomething(this, "hello there", "my friend");
}
public static void Main(string[] args)
{
MyClass mc = new MyClass();
mc.DoSomethingFunny();
}
}
}