Code Inspection: Redundant empty argument list on object creation expression
Last modified: 03 August 2023 tip
In C#, when you create a new instance of a class and immediately initialize it using a collection initializer (the part in the curly braces), you don't need to include the parentheses after the class name.
Therefore ReSharper suggests removing the redundant parentheses to make your code cleaner and more concise.