Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 721 Bytes

RR0193.md

File metadata and controls

29 lines (19 loc) · 721 Bytes

Convert interpolated string to concatenation

Property Value
Id RR0193
Title Convert interpolated string to concatenation
Syntax interpolated string
Enabled by Default

Usage

Before

string s = $"a{b}c";

After

string s = "a" + b + "c";

See Also

(Generated with DotMarkdown)