Exemplo n.º 1
0
 public static TestScript.ClassWithInlines chained(this TestScript.ClassWithInlines self, int mult)
 {
     return(self.withTakeMe(mult * self.takeMe));
 }
Exemplo n.º 2
0
 public static TestScript.ClassWithInlines chained(this TestScript.ClassWithInlines self, TestScript.ClassWithInlines other)
 {
     return(self.withTakeMe(other.takeMe * self.takeMe));
 }
Exemplo n.º 3
0
 public static int something(this TestScript.ClassWithInlines self, int mult)
 {
     return(self.takeMe * mult);
 }