M
Markus Eßmayr
Hello,
I believe, this is an easy task to do, but I couldn't find the way to do it!
I'd like to code the following function
[C#]
void DemoFunction(ref IntPtr somePointer)
{
somePointer = 1234;
}
in MC++.
But how should I declare it?
[MC++]
void DemoFunction(IntPtr^ somePointer)
translates to
[C#]
void DemoFunction(ValueType somePointer)
Please help!
Thanks VERY MUCH in advance!
Regards,
Max
I believe, this is an easy task to do, but I couldn't find the way to do it!
I'd like to code the following function
[C#]
void DemoFunction(ref IntPtr somePointer)
{
somePointer = 1234;
}
in MC++.
But how should I declare it?
[MC++]
void DemoFunction(IntPtr^ somePointer)
translates to
[C#]
void DemoFunction(ValueType somePointer)
Please help!
Thanks VERY MUCH in advance!
Regards,
Max