Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 522 Bytes

RCS1114.md

File metadata and controls

28 lines (18 loc) · 522 Bytes

RCS1114: Remove redundant delegate creation

Property Value
Id RCS1114
Category Redundancy
Severity Info

Example

Code with Diagnostic

Changed += new EventHandler(OnChanged); // RCS1114

Code with Fix

Changed += OnChanged;

See Also

(Generated with DotMarkdown)