Returns the size in bytes of a given variable.
byteSize = GetByteSize(expression)
The function has the following parameters:
Parameter | Description | |
---|---|---|
expression | Any legal BASIC+ expression. | |
The size in bytes of a give variable.
variable = 12345678 byteSize = GetByteSize(variable) call Msg(@window, "The bytesize of " : variable : " is " : bytesize)