Reporter | Victor Kropp (kropp) |
---|---|
Created | Feb 22, 2010 6:19:26 PM |
Updated | Apr 20, 2018 2:03:42 PM |
Resolved | Apr 18, 2018 7:25:45 PM |
Subsystem | Quick Fixes |
Assignee | Andrew Karpov (andrew.karpov) |
Priority | Normal |
State | Verified |
Type | Bug |
Fix version | 2018.1.1 |
Affected versions | 2018.1 |
Fixed In Version ReSharper | Undefined |
VsVersion | All Versions |
I had a constructor
It added another ISolution solution parameter to my constructor. Produced code won't compile.
There're two ways to resolve it:
I suggest to give option to user.
public PatternCatalogue(ISolution solution)I added field
private ISolution mySolution;and invoked QF on it.
It added another ISolution solution parameter to my constructor. Produced code won't compile.
There're two ways to resolve it:
- Add parameter with different
- Use parameter already there
I suggest to give option to user.