示例#1
0
 public string CallUsingMultipleParameters(int a, int b, string s, Test2 t, int c, int x, int y, int[] z, Test2 tt)
 {
     return((a + b + (c * x * y)).ToString() + s + t.ToString() + tt.ToString() + z.ToString());
 }
示例#2
0
 public int MethodWithUserTypeParameter(int a, Test2 t)
 {
     t.IncrementMutable();
     return(6);
 }