sonar-dotnet icon indicating copy to clipboard operation
sonar-dotnet copied to clipboard

Fix S3900 FN: Rule does not raise on LINQ methods

Open Tim-Pohlmann opened this issue 7 months ago • 0 comments

void Method(List<int> list)
{
    _ = list.Where(x => true);  // FN
}

S3900 should re-use the list of known LINQ methods introduced in #9414 to raise in cases like this.

Tim-Pohlmann avatar Jul 03 '24 15:07 Tim-Pohlmann