scrivo / highlight.php

A port of highlight.js by Ivan Sagalaev to PHP
BSD 3-Clause "New" or "Revised" License
695 stars 45 forks source link

C# - Missing keywords #96

Open makolyte opened 2 years ago

makolyte commented 2 years ago

I noticed some missing keywords from the latest versions of C#:

Example: public record Movie(string Title);

Example: var m = a with { Name = "Test"}

These were new keywords added in .NET 5 / C# 9. I'm kinda guessing there might be other missing keywords from the latest versions. I haven't noticed any, just these two.

For reference: https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/