Hello,
One of the options I reguarly use with coderush is pressing control + ~ and selecting 'use string.format' option.
This used to look like this:
But now when I press control + ~ I get this:
It is probably some setting somewhere, but I cannot find it. Please assist.
Thank you.
Hi,
Please check to see that the refactoring is enabled in the options. Open the CodeRush->Options… tool window, navigate to the "Editor->Visual Basic->Code Actions->Code Actions Catalog" page and make sure that the "Use String.Format" refactoring is enabled.

If this does not help, post here sample code where the refactoring is not available for you. It is not clear from your second picture how the code looks.

I tried the code similar to your first example and I can execute "Convert to String.Format" in such case:
I am looking forward to hearing from you.
Hi,
String.Format is enabled.

Made a couple tests and it seems it does work in some situations.
Working:
Dim result = "Total: " & 10
Dim result = "Total: " + 10.ToString()
Not working:
Dim a As String = "a" Dim b As String = "b" Dim result = a & b
Dim a As String = "a" Dim b As String = "b" Dim result = a + b
Dim str = "total: " Dim result = str + 10.ToString()
Example screenshot

Thank you for the code snippets. I reproduced this behavior on my side. We will let you know when we fix this issue.