Convert to Built-in Type
In This Article
Changes a reference to a system type into a reference to an appropriate built-in type.
#Availability
Available from the context menu or via shortcuts:
- when the cursor is on a reference to a system type.
#Notes
- This refactoring is the opposite of Convert to System Type.
#Examples
private │Int32 myField = 15;
private myField As │Int32 = 15
Result:
private │int myField = 15;
private myField As │Integer = 15