You can only have one params argument. You can have two array arguments and the caller can use array initializers to call your method, but there can only be one params argument.
void foobar(int[] foo, string[] bar)
...
foobar(new[] { 1, 2, 3 }, new[] { "a", "b", "c" });