If I have a function like this:
If IsTrue Exist("SHORTCUT.DLL") Then Kill "SHORTCUTDLL"
And I use multiple copies of the string or asciiz as above, and then go to a string such as :
SCD = "SHORTCUT.DLL"
And then replace that SCD in the function above, am I saving any memory by doing this or does the compiler recognize the same string?
Thanks,
Scott
-------------
Scott Turchin
If IsTrue Exist("SHORTCUT.DLL") Then Kill "SHORTCUTDLL"
And I use multiple copies of the string or asciiz as above, and then go to a string such as :
SCD = "SHORTCUT.DLL"
And then replace that SCD in the function above, am I saving any memory by doing this or does the compiler recognize the same string?
Thanks,

Scott
-------------
Scott Turchin
Comment