It is for parameter where is a type instead a variable. The goal is to differenciate it and to make thing easier.
From manual about SizeOf():
Note: if a variable and a structure have the same name, the structure will have the priority over the variable.
Code: Select all
Debug SizeOf(word)
word.l
Debug SizeOf(word)
What about to do:
Code: Select all
Debug SizeOf(.word); <- for type name
Debug SizeOf(word); <- for variable name
