M
Markus Minichmayr
Hi!
I want to implement a class in C++ and use it in C#. There are Methods with
Parameters that I want to declare as "out" parameters. Would look like this
in C#:
void MyMethod(out int myOutPar)
How would this declaration look like in C++?
Thanks for any help
- Markus
PS.: I found out how a ref parameter is declared. E.g.:
void MyMethod(int __gc & myRefPar);
I want to implement a class in C++ and use it in C#. There are Methods with
Parameters that I want to declare as "out" parameters. Would look like this
in C#:
void MyMethod(out int myOutPar)
How would this declaration look like in C++?
Thanks for any help
- Markus
PS.: I found out how a ref parameter is declared. E.g.:
void MyMethod(int __gc & myRefPar);