Reporter |
|
---|---|
Created | Mar 15, 2018 4:28:58 PM |
Updated | Apr 5, 2018 5:49:58 PM |
Subsystem | Code Style - Formatter |
Assignee | Dmitry Osinovsky (Dmitry.Osinovsky) |
Priority | Critical |
State | Submitted |
Type | Bug |
Fix version | 2018.1.1 |
Affected versions | 2017.3.2 |
Fixed In Version ReSharper | Undefined |
VsVersion | All Versions |
I have setup a code formatting profile and it seems that it adds an erroneous space character. Here is an example:
Line of Code:
Becomes:
The space within the method parenthesis before the first parameter within the string interpolation should not be there.
Line of Code:
Console.WriteLine($"{SomeMethod(someParam1, someParam2)}");
Becomes:
Console.WriteLine($"{GetPaddedHeader( someParam, someParam2)}");
The space within the method parenthesis before the first parameter within the string interpolation should not be there.