M
Michael Gunter
Good afternoon,
I am creating an interface in C++ using the managed extensions. I need to
declare a parameter as an out string[] (as would be represented in C#). Does
anyone know how to do this? Declaring out parameters generally takes the
form:
[Out] <type> __gc* name
and arrays generally take the form:
<type> name __gc[];
However, none of the below work:
[Out] <type> name __gc[] __gc*;
[Out] <type> name __gc* __gc[];
[Out] <type> __gc* name __gc[];
Any ideas?
Michael Gunter
I am creating an interface in C++ using the managed extensions. I need to
declare a parameter as an out string[] (as would be represented in C#). Does
anyone know how to do this? Declaring out parameters generally takes the
form:
[Out] <type> __gc* name
and arrays generally take the form:
<type> name __gc[];
However, none of the below work:
[Out] <type> name __gc[] __gc*;
[Out] <type> name __gc* __gc[];
[Out] <type> __gc* name __gc[];
Any ideas?
Michael Gunter