Use Explicit Notation
In This Article
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
- This refactoring is the opposite of Use Short Notation.
#Examples
│int? a = null;
Dim a As │Integer? = Nothing
Result:
Nullable <int>│ a = null;
Dim a As Nullable (Of Integer)│ = Nothing