I have this in a method
C#return base.ToString() + SEPARATOR + BSEQ + SEPARATOR + SwNSQ + SEPARATOR + EqNSQ + SEPARATOR + AddNSQ + SEPARATOR + TotalNSQ;
Coderush shows a hint for string.format and when i apply , this turns into
C#return string.Format("{0}{1}{2}{1}{2}{1}{2}{1}{2}{1}{2}", base.ToString(), SEPARATOR, BSEQ, SwNSQ, EqNSQ, AddNSQ, TotalNSQ);
2nd question. When can I expect the enum expansion in switch case that was available in the classic version to be ported to Roslyn… One of the refactorings I miss the most .
Hi Senthil,
Regarding the first question. I have tried to reproduce the issue, but without success.
I have attached a screencast that illustrates my attempts.
To help us with research, would you please provide us with a simple project where the issue is reproducible?
Also, share your CodeRush settings (you can get them here: %AppData%\CodeRush\Settings).
Regarding the second question, I have created another thread: Porting the "Create Case Blocks from Enum" provider from CodeRush Classic and answered you there.
We are looking forward to hearing from you.
Hi Senthil,
Thank you for providing additional information.
I reproduced this issue with your project, so we will notify you as soon as we fix this issue.