Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 389 Bytes

RCS1118.md

File metadata and controls

25 lines (17 loc) · 389 Bytes

RCS1118: Mark local variable as const

Property Value
Id RCS1118
Severity Info

Example

Code with Diagnostic

string s = "a"; // RCS1118
string s2 = s + "b";

Code with Fix

const string s = "a";
string s2 = s + "b";

(Generated with DotMarkdown)