G
Guest
Hello gurus,
I have the following C# function signature:
void TheFunction(Dictionary<string, MyClassObj> dicName, out int nOne, out
int nTwo, out int nThree, out int nFour);
And it works fine.
I'm trying to write a managed C++ function that will save the save
signature, but till now I've got all kind of compiler error.
Can anyone tell me how a managed C++ function signature should look like
that will do the job like the one I showed above?
I have the following C# function signature:
void TheFunction(Dictionary<string, MyClassObj> dicName, out int nOne, out
int nTwo, out int nThree, out int nFour);
And it works fine.
I'm trying to write a managed C++ function that will save the save
signature, but till now I've got all kind of compiler error.
Can anyone tell me how a managed C++ function signature should look like
that will do the job like the one I showed above?