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

The Contains extension method of the array calls to different targets #77223

Closed
q7164518 opened this issue Feb 14, 2025 · 2 comments
Closed

The Contains extension method of the array calls to different targets #77223

q7164518 opened this issue Feb 14, 2025 · 2 comments

Comments

@q7164518
Copy link

q7164518 commented Feb 14, 2025

Version Used:
dotnet --version
9.0.200

C# Version Used:
preview

Steps to Reproduce:

long[] ids = [1, 2, 3];
var data = ids.Contains(1);

Expected Behavior:

System. Linq. Enumerable.Contains

Actual Behavior:

System.MemoryExtensions.Contains

Why does C# Preview have call bias, which causes expression tree parsing errors

Of course, if I don't use the C# preview, the Contains method is called correctly

@dotnet-issue-labeler dotnet-issue-labeler bot added Area-Compilers untriaged Issues and PRs which have not yet been triaged by a lead labels Feb 14, 2025
@Youssef1313
Copy link
Member

It seems this exact example was mentioned in the first-class span types proposal:

https://github.com/dotnet/csharplang/blob/285ea6828689150ee08878358854cc2dc93b4bac/proposals/first-class-span-types.md#expression-trees

Briefly mentioned in the breaking changes doc as well: https://github.com/dotnet/roslyn/blob/main/docs/compilers/CSharp/Compiler%20Breaking%20Changes%20-%20DotNet%2010.md#spant-and-readonlyspant-overloads-are-applicable-in-more-scenarios-in-c-14-and-newer

@jjonescz may be able to comment with more details.

@q7164518
Copy link
Author

It seems this exact example was mentioned in the first-class span types proposal:

https://github.com/dotnet/csharplang/blob/285ea6828689150ee08878358854cc2dc93b4bac/proposals/first-class-span-types.md#expression-trees

Briefly mentioned in the breaking changes doc as well: https://github.com/dotnet/roslyn/blob/main/docs/compilers/CSharp/Compiler%20Breaking%20Changes%20-%20DotNet%2010.md#spant-and-readonlyspant-overloads-are-applicable-in-more-scenarios-in-c-14-and-newer

@jjonescz may be able to comment with more details.

Then ORM needs to be proactive. Okay, I get it

@dotnet-policy-service dotnet-policy-service bot removed the untriaged Issues and PRs which have not yet been triaged by a lead label Feb 14, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants