You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following code compiles and run, but the syntax highlighting in GitHub and VSCode do not identify escaped or unescaped non-ascii identifiers properly:
using System;publicclassC{staticstringbar()// ✔️{return"bar";}// static string föö()staticstring\u0066\u00F6\u00F6()// ✘ - expected \u0066\u00F6\u00F6 to have same color as bar or Main{return"txt";}publicstaticvoidMain(){
Console.WriteLine(föö());// ✘ - expected föö to have same color as bar or Main
Console.WriteLine(\u0066\u00F6\u00F6());// ✘ - expected \u0066\u00F6\u00F6 to have same color as bar or Main
Console.WriteLine(bar());// ✔️}}
VSCode is at least highlighting `föö()` properly (GitHub linguist probably needs an update to sync with the latest grammar update which eventually consumes this repo).
The text was updated successfully, but these errors were encountered:
The following code compiles and run, but the syntax highlighting in GitHub and VSCode do not identify escaped or unescaped non-ascii identifiers properly:
VSCode is at least highlighting `föö()` properly (GitHub linguist probably needs an update to sync with the latest grammar update which eventually consumes this repo).
The text was updated successfully, but these errors were encountered: