Skip to content

Instantly share code, notes, and snippets.

@st0326s
Created August 8, 2014 07:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save st0326s/e94719d04af681df0177 to your computer and use it in GitHub Desktop.
Save st0326s/e94719d04af681df0177 to your computer and use it in GitHub Desktop.
class aaa {
static void bbb (int a ,params string[] strs) {
}
}
static void Main () {
int a = 1;
int b = 2;
bbb(a,"foo","bar","baz");
bbb(b);
}
}
static void Main () {
int a = 1;
int b = 2;
bbb(a,"foo","bar","baz");
bbb(b);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment