2 using System
.Reflection
;
13 public class ImplementingExplicitInterfacesMembers
: Iface1
, Iface2
{
14 void Iface1
.IfaceMethod1 ()
18 void Iface2
.IfaceMethod2 ()
23 public static int Main ()
25 object[] o
= typeof (ImplementingExplicitInterfacesMembers
).GetMethods (BindingFlags
.NonPublic
| BindingFlags
.Instance
);
26 foreach (MethodInfo mi
in o
) {
27 if (mi
.Name
.IndexOf ('+') != -1)
29 Console
.WriteLine (mi
.Name
);