-
Notifications
You must be signed in to change notification settings - Fork 746
Closed
Labels
A-lexingarea: changes to individual lexersarea: changes to individual lexerschangelog-updateItems which need to get mentioned in the changelogItems which need to get mentioned in the changeloggood first issueGood for newcomersGood for newcomers
Milestone
Description
Interpolated Strings cause the code to lose all syntax formatting. Removing the $
and just using boring strings works.
This works:
Console.WriteLine("I created a key named" + newKey.Name +
"Is it enabled?" + newKey.IsEnabled);
This doesn't:
Console.WriteLine($"I created a key named {newKey.Name}. " +
$"Is it enabled? {newKey.IsEnabled}");
msitms, timabbott, aryanshridhar, matrdr, Whitebock and 1 more
Metadata
Metadata
Assignees
Labels
A-lexingarea: changes to individual lexersarea: changes to individual lexerschangelog-updateItems which need to get mentioned in the changelogItems which need to get mentioned in the changeloggood first issueGood for newcomersGood for newcomers