Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 512 Bytes

RCS1105.md

File metadata and controls

28 lines (18 loc) · 512 Bytes

RCS1105: Unncessary interpolation

Property Value
Id RCS1105
Category Simplification
Severity Info

Example

Code with Diagnostic

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

Code with Fix

string s = $"abc";

See Also

(Generated with DotMarkdown)