Sometimes CodeRush does format code in a way that makes it no longer compile. The latest example is the following:
return sign + " " + $"{payment.Amount.ToString("C2", CultureHelper.CurrentCulture)}";
To:
return $"{sign} {payment.Amount.ToString(string.Empty;
Hello,
Thank you for the sample code. I can reproduce this issue locally. Please give us some time to research it. We will get back to you.