This inspection suggests specifying the string formatting within the format placeholder of the String.Format(), rather than in an explicit ToString() call on the argument.
In the example below, moving the format specifier into the placeholder improves the conciseness and readability of the code.
Suboptimal code
publicvoidTest(int i)
{
var str =string.Format("Result: {0}", i.ToString("N"));