[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. 