We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Ported from TFS WorkItem: 981839
Repro Steps:
Affected Branch: Affected Build: Affected Product Language: Steps to reproduce:1. Copy/Paste C#:
using System.Collections.Generic; class C<T, U> where T : struct where U : List<T> { void M() { var x = new C<int, List<int>>(); } }
****
Expected: "List<T>" is shown in two places (in constraint clause and in description of U below).
Actual: In the constraint clause, it is listed as "System.Collections.Generic.List<T>"
Revisions:
The text was updated successfully, but these errors were encountered:
src\EditorFeatures\CSharp\QuickInfo\SemanticQuickInfoProvider.cs is probably a good place to start @Pilchie
Sorry, something went wrong.
Only qualify the first symbol in Quick Info
db8d5ca
Fixes dotnet#547
Closing out due to lacck of feedback.
sharwell
Successfully merging a pull request may close this issue.
Ported from TFS WorkItem: 981839
Repro Steps:
Affected Branch:
Affected Build:
Affected Product Language:
Steps to reproduce:
1. Copy/Paste C#:
****
Expected: "List<T>" is shown in two places (in constraint clause and in description of U below).
Actual: In the constraint clause, it is listed as "System.Collections.Generic.List<T>"
Revisions:
The text was updated successfully, but these errors were encountered: