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()); }
public int MethodWithUserTypeParameter(int a, Test2 t) { t.IncrementMutable(); return(6); }