[SA1010](https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1010.md): Opening square brackets should not be preceded by a space. [SA1001](https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1001.md): Commas should be followed by whitespace. --- This snippet will make the two rules conflict. ```cs method.Invoke(executor, [nextAction.Value.Key, input]); ``` Before C# 12, this would have been: ```cs method.Invoke(executor, new object[] { nextAction.Value.Key, input }) ``` C# 12 introduced collection expressions, which makes the two rules conflict.