Convert interpolated string to concatenation
Property | Value |
---|---|
Id | RR0193 |
Applicable Syntax | interpolated string |
Enabled by Default | ✓ |
Usage
Example #1
before.cs
string s = $"a{b}c";
after.cs
string s = "a" + b + "c";
Configuration
roslynator_refactoring.convert_interpolated_string_to_concatenation.enabled = true|false