-
Notifications
You must be signed in to change notification settings - Fork 4.1k
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
VB: Do not use overload resolution while lowering interpolated strings #75449
Conversation
/azp run |
Azure Pipelines successfully started running 2 pipeline(s). |
@dotnet/roslyn-compiler Please review |
1 similar comment
@dotnet/roslyn-compiler Please review |
@@ -78,117 +79,7 @@ Namespace Microsoft.CodeAnalysis.VisualBasic | |||
' | |||
' (2) For the built-in types, we can use .ToString(string format) for some format strings. | |||
' Detect those cases that can be handled that way and take advantage of them. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we remove this comment now, since it's done in initial binding? Or mention that this transformation was done during initial binding and the result is in ConstructionOpt
? #Resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we remove this comment now, since it's done in initial binding? Or mention that this transformation was done during initial binding and the result is in
ConstructionOpt
?
I do not think there is a need to do either.
@dotnet/roslyn-compiler For the second review |
Looking |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM Thanks (iteration 2)
Related to #74275.