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
I noticed some missing keywords from the latest versions of C#:
record
Example: public record Movie(string Title);
with
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.
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/
The text was updated successfully, but these errors were encountered: