Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 481 Bytes

RCS1204.md

File metadata and controls

28 lines (18 loc) · 481 Bytes

RCS1204: Use EventArgs.Empty

Property Value
Id RCS1204
Category Usage
Severity Info

Example

Code with Diagnostic

var x = new EventArgs(); // RCS1204

Code with Fix

var x = EventArgs.Empty;

See Also

(Generated with DotMarkdown)