Ejemplo n.º 1
0
 public void CustomInterfaceMethod(I1InterfaceMethod method) => method.Value += "C1Custom";
 public static void CustomInterfaceMethod(this I1 @this, I1InterfaceMethod method)
 {
     method.Value += "I1Custom";
 }
Ejemplo n.º 3
0
 public void CoreInterfaceMethod(I1InterfaceMethod method) => method.Value += "C1Core";
 public static void CoreInterfaceMethod(this I1 @this, I1InterfaceMethod method)
 {
     method.Value += "I1Core";
 }
 public static void BaseInterfaceMethod(this I1 @this, I1InterfaceMethod method)
 {
     method.Value += "I1Base";
 }
Ejemplo n.º 6
0
 public static void TestsInterfaceMethod(this I1 @this, I1InterfaceMethod method)
 {
     method.Value += "I1Test";
 }
 public void BaseInterfaceMethod(I1InterfaceMethod method)
 {
     method.Value += "C1Base";
 }
Ejemplo n.º 8
0
 public static void CoreInterfaceMethod(this I1 @this, I1InterfaceMethod method)
 {
     method.Value += "I1Core";
 }
Ejemplo n.º 9
0
 public static void BaseInterfaceMethod(this I1 @this, I1InterfaceMethod method)
 {
     method.Value += "I1Base";
 }
Ejemplo n.º 10
0
 public void TestsInterfaceMethod(I1InterfaceMethod method)
 {
     method.Value += "C1Test";
 }
Ejemplo n.º 11
0
 public void CoreInterfaceMethod(I1InterfaceMethod method)
 {
     method.Value += "C1Core";
 }
Ejemplo n.º 12
0
 public void BaseInterfaceMethod(I1InterfaceMethod method)
 {
     method.Value += "C1Base";
 }