LWehmschulte
- Total activity 4
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 1
-
Created ReSharper inserts Space after Cast when creating array with collection expression
I was writing this piece of code:var list = (double[])[1, 2, 3, 4];but after reformatting with ReSharper it inserted a space after the cast:var list = (double[]) [1, 2, 3, 4];This is a violation ag...