Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 512 Bytes

RCS1020.md

File metadata and controls

28 lines (18 loc) · 512 Bytes

RCS1020: Simplify Nullable<T> to T?

Property Value
Id RCS1020
Category Simplification
Severity Info

Example

Code with Diagnostic

Nullable<int> x = null; // RCS1020

Code with Fix

int? x = null;

See Also

(Generated with DotMarkdown)