csharp-styleguide
csharp-styleguide copied to clipboard
SA1313 has conflict with C# record example
SA1313ParameterNamesMustBeginWithLowerCaseLetter
The following is the official example from Microsoft,
public record Person(string FirstName, string LastName);
But SA1313 will complain about it.