Skip to main content

Convert to Built-in Type

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

#Examples

private Int32 myField = 15;
private myField As Int32  = 15

Result:

private int myField = 15;
private myField As Integer  = 15

#Screenshot

rsConvertToBuiltInType