Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 337 Bytes

RCS1217.md

File metadata and controls

23 lines (15 loc) · 337 Bytes

RCS1217: Convert interpolated string to concatenation

Property Value
Id RCS1217
Severity Hidden

Example

Code with Diagnostic

$"{a}{b}{c}"

Code with Fix

a + b + c

(Generated with DotMarkdown)