csharp-styleguide icon indicating copy to clipboard operation
csharp-styleguide copied to clipboard

SA1313 has conflict with C# record example

Open Everest2020 opened this issue 3 years ago • 0 comments

SA1313ParameterNamesMustBeginWithLowerCaseLetter

The following is the official example from Microsoft,

public record Person(string FirstName, string LastName);

But SA1313 will complain about it. image

Everest2020 avatar Jun 19 '21 15:06 Everest2020