コード例 #1
0
 public static TestScript.ClassWithInlines chained(this TestScript.ClassWithInlines self, int mult)
 {
     return(self.withTakeMe(mult * self.takeMe));
 }
コード例 #2
0
 public static TestScript.ClassWithInlines chained(this TestScript.ClassWithInlines self, TestScript.ClassWithInlines other)
 {
     return(self.withTakeMe(other.takeMe * self.takeMe));
 }
コード例 #3
0
 public static int something(this TestScript.ClassWithInlines self, int mult)
 {
     return(self.takeMe * mult);
 }