Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 519 Bytes

RCS1118.md

File metadata and controls

30 lines (20 loc) · 519 Bytes

RCS1118: Mark local variable as const

Property Value
Id RCS1118
Category General
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";

See Also

(Generated with DotMarkdown)