Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 488 Bytes

RCS1058.md

File metadata and controls

28 lines (18 loc) · 488 Bytes

RCS1058: Use compound assignment

Property Value
Id RCS1058
Category Simplification
Severity Info

Example

Code with Diagnostic

i = i + 2; // RCS1058

Code with Fix

i += 2;

See Also

(Generated with DotMarkdown)