S
Steven Blair
Hi,
I am having problem passing a string by reference to some C++ code.
Wondered if anyone could help me out.
C# code:
myFunc(str);
C++ code:
myFunc(String &str)
{
str.Copy("Test");
}
This doesnt work tho
Steven
www.stevenblair.com
I am having problem passing a string by reference to some C++ code.
Wondered if anyone could help me out.
C# code:
myFunc(str);
C++ code:
myFunc(String &str)
{
str.Copy("Test");
}
This doesnt work tho

Steven
www.stevenblair.com