94b2861243
Former-commit-id: 5f9c6ae75f295e057a7d2971f3a6df4656fa8850
9 lines
123 B
C#
9 lines
123 B
C#
using System;
|
|
|
|
delegate void Pan (object sender, EventArgs args);
|
|
|
|
abstract class Foo {
|
|
|
|
public abstract event Pan Bar;
|
|
}
|