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?


--
Thanks
Sharon

Re: How to ? out argument in managed c++ by Ben

Ben
Thu Jun 21 18:05:23 CDT 2007


"Sharon" <SharonG@newsgroups.nospam> wrote in message
news:B46798EB-33D1-443A-8981-2C12397C8189@microsoft.com...
> 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?

Already answered in microsoft.public.dotnet.languages.vc

This is the wrong group, please don't multipost.

>
>
> --
> Thanks
> Sharon


Re: How to ? out argument in managed c++ by SharonG

SharonG
Fri Jun 22 04:34:02 CDT 2007

Yes, I did post it in another group. I wasn't sure which group is the one for
it.
Sorry about that.

As I said, your solution works fine.

---------
Thanks
Sharon