a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
15 lines
386 B
C#
15 lines
386 B
C#
// Distilled from report in http://lists.ximian.com/archives/public/mono-devel-list/2004-September/007777.html
|
|
|
|
using System;
|
|
|
|
class EntryPoint {
|
|
delegate void EventHandler (object sender);
|
|
static event EventHandler FooEvent;
|
|
static void bar_f (object sender) {}
|
|
public static void Main () {
|
|
if (FooEvent != null)
|
|
FooEvent (null);
|
|
object bar = new EventHandler (bar_f);
|
|
}
|
|
}
|