MA0005 - Use Array.Empty<T>() You should use Array.Empty<T>() instead of new T[0] to avoid an allocation. new int[0]; // Should be Array.Empty<int>();