Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Which of the following is NOT a valid way to declare and initialize an array in C#?
int[] numbers = { 1, 2, 3, 4, 5 };
int[] numbers = new int[5] { 1, 2, 3, 4, 5 };
int[] numbers = new int[] { 1, 2, 3, 4, 5 };
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!