Skip to main content

Use Explicit Notation

Converts a short form of a nullable type reference (e.g. “int?”) to its explicit form (e.g. “Nullable<int>”).

#Availability

Available from the context menu or via shortcuts:

  • when the cursor is on a short form reference to the nullable type.

#Notes

#Examples

int? a = null;
Dim a As Integer? = Nothing

Result:

Nullable <int> a = null;
Dim a As Nullable (Of Integer) = Nothing

#Screenshot

rsUseExplicitNotation