Question:Given the code below, which of the following items will cause a compilation error? static void F1(params int [] y) { } static void Sample() { int [] j = new Int32[3]; List k = new List(); // ANSWER GOES HERE }
A F1(j);
B F1(k);
C F1(1, 2, 3);
D F1(new [] {1,2,3})
E None of these
+ AnswerB
+ Report