sonar-dotnet icon indicating copy to clipboard operation
sonar-dotnet copied to clipboard

New Rule Idea: Do not use collection initializers with `ImmutableArray`

Open Tim-Pohlmann opened this issue 4 months ago • 0 comments

Using a collection initializer with the ImmutableArray type, causes a NullReferenceException.

_ = new ImmutableArray<string> { "init" }; // NRE

SharpLab

Tim-Pohlmann avatar Oct 09 '24 08:10 Tim-Pohlmann