-
Notifications
You must be signed in to change notification settings - Fork 676
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# 6.0 string interpolation does not recognize the end of string #638
Milestone
Comments
@RaulOnk do you have the C# extension installed? |
From @RaulOnk on August 4, 2016 22:32 Yes and it compiled just fine. It is just visually not working and anything under that does not have auto complete. |
Had a quick look at this one and the root cause is that highlighting regex stuff doesn't support expression bodied members from what I can tell. |
ivanz
added a commit
to ivanz/omnisharp-vscode
that referenced
this issue
Aug 17, 2016
ivanz
added a commit
to ivanz/omnisharp-vscode
that referenced
this issue
Aug 17, 2016
ivanz
added a commit
to ivanz/omnisharp-vscode
that referenced
this issue
Aug 17, 2016
ivanz
added a commit
to ivanz/omnisharp-vscode
that referenced
this issue
Aug 18, 2016
ivanz
added a commit
to ivanz/omnisharp-vscode
that referenced
this issue
Aug 18, 2016
ivanz
added a commit
to ivanz/omnisharp-vscode
that referenced
this issue
Aug 18, 2016
This was referenced Aug 18, 2016
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
From @RaulOnk on August 4, 2016 21:47
Steps to Reproduce:
When doing string interpolation everything greys out. For example
public void GreetName() => Console.WriteLine($"Hello {this.Name}");
will grey out everything under that method. It does not recognize where the string ended.
Copied from original issue: microsoft/vscode#10146
The text was updated successfully, but these errors were encountered: