dotnet/roslyn-sdk

SpecialType property is 'None' instead of 'System_Nullable_T' for INamedTypeSymbol when nullable type

sergiojrdotnet opened this issue · 1 comments

When evaluating a INamedTypeSymbol for any nullable type, the SpecialType property is always None instead System_Nullable_T

image

This is expected. System_Nullable_T refers to System.Nullable<>, but bool? refers to System.Nullable<bool>.