sonar-dotnet
sonar-dotnet copied to clipboard
New Rule Idea: Do not use collection initializers with `ImmutableArray`
Using a collection initializer with the ImmutableArray
type, causes a NullReferenceException
.
_ = new ImmutableArray<string> { "init" }; // NRE