I Noticed that when you pass a literal string as a parameter, you cannot assign text to it, but
when you pass the reference to the string you can.
At least on 32 bit mode, because in 64 bit mode it crashes.
My small request is, can we alter the text of "direct string" parameters in 64 bit mode just like
in 32 bit mode? I dont care to alter the text of these parameters:
string param
I need it only for these:
string *param
Otherwise i have to make an ugly hack.
In other words, i think what i am really asking is either:
- Allow string ("") to be passed as parameter....
- Allow non byref parameters to be modified in the target modules.
- A way to pass string parameters bycopy.
If possible. Thanks!