Skip to content

Latest commit

 

History

History
11 lines (9 loc) · 249 Bytes

MA0108.md

File metadata and controls

11 lines (9 loc) · 249 Bytes

MA0108 - Remove redundant argument value

using System.Runtime.CompilerServices;

void A(string value)
{
    ArgumentNullException.ThrowIfNull(value, "value"); // report diagnostic
    ArgumentNullException.ThrowIfNull(value); // ok
}