Property | Value |
---|---|
Id | RR0193 |
Title | Convert interpolated string to concatenation |
Syntax | interpolated string |
Enabled by Default | ✓ |
string s = $"a{b}c";
string s = "a" + b + "c";
(Generated with DotMarkdown)
Property | Value |
---|---|
Id | RR0193 |
Title | Convert interpolated string to concatenation |
Syntax | interpolated string |
Enabled by Default | ✓ |
string s = $"a{b}c";
string s = "a" + b + "c";
(Generated with DotMarkdown)