A call to String.Format that does not use the IFormatProvider overload.
IFormatProvider
var s = string.Format("{0} is {1}", noun, adjective);
A code fix will be presented to you that will transform the code:
var s = $"{noun} is {adjective}";
None
TBD