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
Adding an argument to an implicit object creation doesn't trigger AddParameter.
Similarly, GenerateConstructor doesn't trigger on C c = new(1, 2, 3, 4); to offer to add a constructor with 4 parameters.
C c = new(1, 2, 3, 4);
class C { C(int i) { } void M() { C c = new(1 $$); // typing a second argument here should trigger AddParameter } }
Relates to #28489 (target-typed new feature)
The text was updated successfully, but these errors were encountered:
allisonchou
Successfully merging a pull request may close this issue.
Adding an argument to an implicit object creation doesn't trigger AddParameter.
Similarly, GenerateConstructor doesn't trigger on
C c = new(1, 2, 3, 4);
to offer to add a constructor with 4 parameters.Relates to #28489 (target-typed new feature)
The text was updated successfully, but these errors were encountered: