Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 735 Bytes

RR0193.md

File metadata and controls

29 lines (19 loc) · 735 Bytes

Replace interpolated string with concatenation

Property Value
Id RR0193
Title Replace interpolated string with 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)