Tian Yu

Results 2 issues of 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. ![image](https://user-images.githubusercontent.com/61738692/122648103-ca20a980-d127-11eb-8209-dfdaa2948968.png)