Code inspection: Convert 'Nullable<T>' into 'T?'Last modified: 11 February 2024Category: Language Usage OpportunitiesID: ConvertNullableToShortFormEditorConfig: resharper_convert_nullable_to_short_form_highlighting=[error|warning|suggestion|hint|none]Default severity: SuggestionLanguage: C#Requires SWA: NotipYou can suppress this inspection to ignore specific issues, change its severity level to make the issues less or more noticeable, or disable it altogether.In C#, it is not necessary to use the full Nullable<T> type name because the language allows you to write T? instead. Consequently, ReSharper offers the option to replace the long type name with the shorthand.