-
Notifications
You must be signed in to change notification settings - Fork 33
LC0003
Stefan Maroń edited this page Dec 19, 2021
·
1 revision
when declaring variables or properties it is still possible to use object ids
var
Customer: Record 18;
However, this is considered bad practice. Its not readable and can not be renamed.
Use object names instead
var
Customer: Record Customer;