Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 178 Bytes

MA0005.md

File metadata and controls

10 lines (7 loc) · 178 Bytes

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>();