Ejemplo n.º 1
0
 static void TestThisOrOther(IThis <IOther> param)
 {
     param.doThis();
     param.Self.doOther();
 }
Ejemplo n.º 2
0
 static void TestThisOrThat(IThis <IThat> param)
 {
     param.doThis();
     param.Self.doThat();
 }