Select The Correct Declaration Of The Defining Array Of #304
Select the correct declaration of the defining array of parameters.
This multiple choice question (MCQ) is related to the book/course gs gs108 CSharp. It can also be found in gs gs108 Arrays and Strings - Use of Variable Arguements - Quiz No.1.
Select the correct declaration of the defining array of parameters.
void func(int[] x) { }
void func(int x) { }
void func(param int[]) { }
void fun(param int[] x) { }