a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
16 lines
211 B
C#
16 lines
211 B
C#
using System;
|
|
|
|
interface IA
|
|
{
|
|
event EventHandler e_a, e_b;
|
|
}
|
|
|
|
class C : IA
|
|
{
|
|
event EventHandler IA.e_a { add {} remove {} }
|
|
event EventHandler IA.e_b { add {} remove {} }
|
|
|
|
public static void Main ()
|
|
{
|
|
}
|
|
} |