O.P. Parameters by reference
Hi, I was wondering if there is any way I can pass parameters by reference.
I mean, I have a method A that passes a string as a parameter for the method B. I need to modify the string inside the method B and have the modified string when I return to method B.
My method B is inside a DLL I am using, therefore it already receives the string as a reference and modifies it. However, when the execution gets back to the method A, the string has not changed.
Please help!!
Thanks in advance,
|