-
Notifications
You must be signed in to change notification settings - Fork 6k
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
[C# 14-Fundamentals and reference]: New Feature - nameof
supports unbound generic types
#44182
Labels
🏁 Release: .NET 10
Work items for the .NET 10 release
dotnet-csharp/svc
in-pr
This issue will be closed (fixed) by an active pull request.
📌 seQUESTered
Identifies that an issue has been imported into Quest.
resolved-by-customer
whats-new/subsvc
Comments
BillWagner
added a commit
to BillWagner/docs
that referenced
this issue
Jan 31, 2025
Fixes dotnet#44182 Add that `nameof` now supports open generic types. This is the first C# 14 feature I've added, so create the C# 14 file, and update the language version tables accordingly.
BillWagner
added a commit
to BillWagner/docs
that referenced
this issue
Feb 3, 2025
Fixes dotnet#44182 Add that `nameof` now supports open generic types. This is the first C# 14 feature I've added, so create the C# 14 file, and update the language version tables accordingly.
BillWagner
added a commit
to BillWagner/docs
that referenced
this issue
Feb 6, 2025
Fixes dotnet#44182 Add that `nameof` now supports open generic types. This is the first C# 14 feature I've added, so create the C# 14 file, and update the language version tables accordingly.
BillWagner
added a commit
to BillWagner/docs
that referenced
this issue
Feb 10, 2025
Fixes dotnet#44182 Add that `nameof` now supports open generic types. This is the first C# 14 feature I've added, so create the C# 14 file, and update the language version tables accordingly.
BillWagner
added a commit
to BillWagner/docs
that referenced
this issue
Feb 10, 2025
Fixes dotnet#44182 Add that `nameof` now supports open generic types. This is the first C# 14 feature I've added, so create the C# 14 file, and update the language version tables accordingly.
BillWagner
added a commit
to BillWagner/docs
that referenced
this issue
Feb 13, 2025
Fixes dotnet#44182 Add that `nameof` now supports open generic types. This is the first C# 14 feature I've added, so create the C# 14 file, and update the language version tables accordingly.
BillWagner
added a commit
to BillWagner/docs
that referenced
this issue
Feb 14, 2025
Fixes dotnet#44182 Add that `nameof` now supports open generic types. This is the first C# 14 feature I've added, so create the C# 14 file, and update the language version tables accordingly.
BillWagner
added a commit
to BillWagner/docs
that referenced
this issue
Feb 18, 2025
Fixes dotnet#44182 Add that `nameof` now supports open generic types. This is the first C# 14 feature I've added, so create the C# 14 file, and update the language version tables accordingly.
BillWagner
added a commit
to BillWagner/docs
that referenced
this issue
Feb 19, 2025
Fixes dotnet#44182 Add that `nameof` now supports open generic types. This is the first C# 14 feature I've added, so create the C# 14 file, and update the language version tables accordingly.
BillWagner
added a commit
to BillWagner/docs
that referenced
this issue
Feb 20, 2025
Fixes dotnet#44182 Add that `nameof` now supports open generic types. This is the first C# 14 feature I've added, so create the C# 14 file, and update the language version tables accordingly.
BillWagner
added a commit
to BillWagner/docs
that referenced
this issue
Feb 25, 2025
Fixes dotnet#44182 Add that `nameof` now supports open generic types. This is the first C# 14 feature I've added, so create the C# 14 file, and update the language version tables accordingly.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
🏁 Release: .NET 10
Work items for the .NET 10 release
dotnet-csharp/svc
in-pr
This issue will be closed (fixed) by an active pull request.
📌 seQUESTered
Identifies that an issue has been imported into Quest.
resolved-by-customer
whats-new/subsvc
Visual Studio release
17.13.p3
Link to speclet
Link to Pull request
New behavior
This was actually merged in VS17.3.p2.
Unbound generic types, such as
List<>
can be used innameof
expressions. Thenameof(List<>)
expression evaluates toList
.Language reference tasks
nameof
page.Note that the merge PR didn't add any new error codes. There's no corresponding issue for updating compiler errors and messages.
Everyday C# tasks
No response
Associated WorkItem - 370946
The text was updated successfully, but these errors were encountered: