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
dotnet --info output:
dotnet --info
.NET Command Line Tools (1.0.0-preview2-003121) Product Information: Version: 1.0.0-preview2-003121 Commit SHA-1 hash: 1e9d529bc5 Runtime Environment: OS Name: ubuntu OS Version: 16.04 OS Platform: Linux RID: ubuntu.16.04-x64
VS Code version: 1.6.0-insiders Theme: https://marketplace.visualstudio.com/items?itemName=Tyriar.theme-glacier C# Extension version: 1.4.1
For code:
public class A { public A() : base( 1, 'abc' new B<char>(), new B<string>()) { var a = 1; var b = "abc"; var c = new B<char>(); var c = new B<string>(); } }
The highlighting inside base() should be colored the same as outside it.
base()
The text was updated successfully, but these errors were encountered:
Looks like we need another scope for constructor initializers.
Sorry, something went wrong.
This should be fixed in the next release:
DustinCampbell
No branches or pull requests
Environment data
dotnet --info
output:VS Code version: 1.6.0-insiders
Theme: https://marketplace.visualstudio.com/items?itemName=Tyriar.theme-glacier
C# Extension version: 1.4.1
Steps to reproduce
For code:
Expected behavior
The highlighting inside
base()
should be colored the same as outside it.Actual behavior
The text was updated successfully, but these errors were encountered: