private static readonly Random Random = new(42);
private static readonly List<int> _list = Enumerable.Range(0, 10_000).Select(s => Random.Next(100)).ToList();
private static readonly IEnumerable<int> _distinct = _list.Distinct();
private static readonly IEnumerable<int> _where = _list.Where(s => s % 2 == 0);
[Benchmark]
public List<int> DistinctWithoutAny() => _distinct.ToList();
[Benchmark]
public List<int> WhereWithoutAny() => _where.ToList();
[Benchmark]
public bool HasAnyDistinct() => _distinct.Any();
[Benchmark]
public bool HasAnyWhere() => _where.Any();