Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix S6605 FP: Any is faster than Exists in .NET 9 #9665

Open
marco-carvalho opened this issue Sep 17, 2024 · 2 comments
Open

Fix S6605 FP: Any is faster than Exists in .NET 9 #9665

marco-carvalho opened this issue Sep 17, 2024 · 2 comments
Labels
Area: C# C# rules related issues. Type: False Positive Rule IS triggered when it shouldn't be.

Comments

@marco-carvalho
Copy link

Hello,

The rule S6605 may no longer be applicable for projects targeting .NET 9.0.

Recent benchmarks indicate that starting with .NET 9.0, Any is actually faster than Exists. Below are the benchmark results.

Code:

using System.Collections.Generic;
using System.Linq;
using BenchmarkDotNet.Attributes;
using BenchmarkDotNet.Jobs;
using BenchmarkDotNet.Running;

BenchmarkRunner.Run<AnyVsExistsBenchmark>();

[SimpleJob(RuntimeMoniker.Net80)]
[SimpleJob(RuntimeMoniker.Net90)]
[MemoryDiagnoser]
[RankColumn]
public class AnyVsExistsBenchmark
{
    private readonly List<int> _list = new() { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };

    [Benchmark]
    public bool Any()
    {
        return _list.Any(x => x == 9);
    }

    [Benchmark]
    public bool Exists()
    {
        return _list.Exists(x => x == 9);
    }
}

Results:

| Method | Job      | Runtime  | Mean      | Error     | StdDev    | Median    | Rank | Gen0   | Allocated |
|------- |--------- |--------- |----------:|----------:|----------:|----------:|-----:|-------:|----------:|
| Any    | .NET 8.0 | .NET 8.0 | 26.148 ns | 0.6048 ns | 1.7255 ns | 26.027 ns |    4 | 0.0095 |      40 B |
| Exists | .NET 8.0 | .NET 8.0 |  9.022 ns | 0.2092 ns | 0.4680 ns |  8.999 ns |    3 |      - |         - |
| Any    | .NET 9.0 | .NET 9.0 |  6.248 ns | 0.2396 ns | 0.6876 ns |  6.031 ns |    1 |      - |         - |
| Exists | .NET 9.0 | .NET 9.0 |  8.396 ns | 0.2399 ns | 0.6845 ns |  8.365 ns |    2 |      - |         - |

Maybe this rule for code targeting .NET 8.0 or below, and a new rule "Any" method should be used instead of the "Exists" for code targeting .NET 9.0 or above?

@jilles-sg
Copy link

Like #9664 (comment) , List.Exists remained unchanged while Any was optimized.

@sebastien-marichal
Copy link
Contributor

Hello @marco-carvalho,

Thank you for pointing this out.
As for #9664, we will take a look when we prepare for the .NET 9 release!

Have a great day!

@sebastien-marichal sebastien-marichal added Type: False Positive Rule IS triggered when it shouldn't be. Area: C# C# rules related issues. labels Sep 18, 2024
@sebastien-marichal sebastien-marichal changed the title Fix S6605: "Collection-specific 'Exists' method should be used instead of the 'Any' extension" shouldn't be used in .NET 9.0 Fix S6605 FP: Any is faster than Exists in .NET 9 Sep 18, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Area: C# C# rules related issues. Type: False Positive Rule IS triggered when it shouldn't be.
Projects
None yet
Development

No branches or pull requests

3 participants