Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 246 Bytes

MA0109.md

File metadata and controls

10 lines (8 loc) · 246 Bytes

MA0109 - Consider adding an overload with a Span<T> or Memory<T>

void A(string[] a) { } // ok as there is an overload with Span
void A(System.ReadOnlySpan<string> a) { }
void A(string[] a) { } // report diagnostic