Skip to content

Latest commit

 

History

History
42 lines (27 loc) · 640 Bytes

RCS1097.md

File metadata and controls

42 lines (27 loc) · 640 Bytes

RCS1097: Remove redundant 'ToString' call

Property Value
Id RCS1097
Category Redundancy
Severity Info

Examples

Code with Diagnostic

string x = s.ToString(); // RCS1097

Code with Fix

string x = s;

Code with Diagnostic

string x = $"{s.ToString()}"; // RCS1097

Code with Fix

string x = $"{s}";

See Also

(Generated with DotMarkdown)