ReSharper 2023.3 Help

Code Inspection: Redundant explicit array size specification in array creation

If you initialize an array by enumerating the values of its elements, there is no need to specify its size because the size is supplied by the number of elements in the array initializer.

ReSharper suggests a quick-fix that removes the explicit specification of the array size.

var x = new int[3] { 1, 2, 3 };
var x = new int[] { 1, 2, 3 };
Last modified: 21 March 2024