| TypeName | StringFormatAnalyzer |
| Check Id | CC0048 |
| Category | Style |
| Severity | Info |
A call to String.Format
that does not use the IFormatProvider overload.
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