Tian Yu
Tian Yu
After using the C# 9 feature `Top-Level Statements`, there is an error. > error CA1812: < Program >$ is an internal class that is apparently never instantiated. If so, remove...
[SA1313ParameterNamesMustBeginWithLowerCaseLetter](https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1313.md) The following is the [official example](https://docs.microsoft.com/en-us/dotnet/csharp/whats-new/csharp-9#record-types) from Microsoft, ```csharp public record Person(string FirstName, string LastName); ``` But SA1313 will complain about it. 