a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
27 lines
393 B
C#
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();
|
|
|
|
}
|
|
}
|
|
|
|
}
|