public static void CustomSuperinterfaceMethod(this S1 @this, S1SuperinterfaceMethod method)
 {
     method.Value += "S1Custom";
 }
 public static void CoreSuperinterfaceMethod(this I1 @this, S1SuperinterfaceMethod method)
 {
     method.Value += "I1Core";
 }
 public static void BaseSuperinterfaceMethod(this S1 @this, S1SuperinterfaceMethod method)
 {
     method.Value += "S1Base";
 }
 public void BaseSuperinterfaceMethod(S1SuperinterfaceMethod method)
 {
     method.Value += "C1Base";
 }
 public void CustomSuperinterfaceMethod(S1SuperinterfaceMethod method)
 {
     method.Value += "C1Custom";
 }
Пример #6
0
 public static void CustomSuperinterfaceMethod(this I1 @this, S1SuperinterfaceMethod method) => method.Value += "I1Custom";
 public void CoreSuperinterfaceMethod(S1SuperinterfaceMethod method)
 {
     method.Value += "C1Core";
 }
Пример #8
0
 public static void TestsSuperinterfaceMethod(this S1 @this, S1SuperinterfaceMethod method)
 {
     method.Value += "S1Test";
 }
Пример #9
0
 public static void CoreSuperinterfaceMethod(this S1 @this, S1SuperinterfaceMethod method) => method.Value += "S1Core";
Пример #10
0
 public static void CoreSuperinterfaceMethod(this S1 @this, S1SuperinterfaceMethod method)
 {
     method.Value += "S1Core";
 }
Пример #11
0
 public static void BaseSuperinterfaceMethod(this I1 @this, S1SuperinterfaceMethod method)
 {
     method.Value += "I1Base";
 }
Пример #12
0
 public void TestsSuperinterfaceMethod(S1SuperinterfaceMethod method)
 {
     method.Value += "C1Test";
 }
Пример #13
0
 public void CoreSuperinterfaceMethod(S1SuperinterfaceMethod method)
 {
     method.Value += "C1Core";
 }
Пример #14
0
 public void BaseSuperinterfaceMethod(S1SuperinterfaceMethod method)
 {
     method.Value += "C1Base";
 }