vote up 2 vote down star

I have a function which parses one string into two strings. In C# I would declare it like this:

void ParseQuery(string toParse, out string search, out string sort)
{
    ...
}

and I'd call it like this:

string searchOutput, sortOutput;
ParseQuery(userInput, out searchOutput, out sortOutput);

The current project has to be done in managed C++. I've tried

using System::Runtime::InteropServices;

...

void ParseQuery(String ^ toParse, [Out] String^ search, [Out] String^ sort)
{
    ...
}

but if I call it like this:

String ^ searchOutput, ^ sortOutput;
ParseQuery(userInput, [Out] searchOutput, [Out] sortOutput);

I get a compiler error, and if I call it like this:

String ^ searchOutput, ^ sortOutput;
ParseQuery(userInput, searchOutput, sortOutput);

then I get an error at runtime. How should I declare and call my function?

flag

47% accept rate

2 Answers

vote up 7 vote down check

You can do this for reference types as:

void ReturnString([Out] String^% value)
{
   value = "Returned via out parameter";
}

// Called as
String^ result;
ReturnString(result);

And for value types as:

void ReturnInt([Out] int% value)
{
   value = 32;
}

// Called as
int result;
ReturnInt(result);

The % makes it a 'ref' parameter and the OutAttribute marks that it is only used for output values.

link|flag
I don't think this is the same as the C# out modifier. For instance, in C# if a parameter it marked out and not assigned to, it results in a compiler error. Is this the same in your example? – Greg Dean Oct 9 '08 at 17:17
This is how C#s out parameters are implemented on the IL level: There is only a ref calling convention, used for ref and out in C#. The annotation with an OutAttribute makes it an out parameter. – Bert Huijben Oct 9 '08 at 21:43
See also: msdn.microsoft.com/en-us/magazine/… – Bert Huijben Oct 9 '08 at 21:48
The IL may be the same but from a language point of view C++ does not support the same thing as the C# out modifier. In the same way it doesn't support the notion of the using() statement (you create the same IL using try/finally, but you lose all the development benefits). – Greg Dean Oct 10 '08 at 4:26
You can easily reproduce using by not using ^ on a variable definition. MC++ automatically calls IDisposable. Dispose when the variable goes out of scope. (You just have to use . instead of -> and %variable if you pass the variable to a method) – Bert Huijben Oct 10 '08 at 10:11
show 1 more comment
vote up -1 vote down

It's not supported. The closest you can get is ref

Granted you can fake it, but you lose a compile time check.

link|flag
OK... how would I declare and call a function with ref parameters in managed C++? – Simon Oct 9 '08 at 9:25
Not sure why this was voted down. When in fact it's not supported. Granted you can fake it, but you lose a compile time check. That's a pretty big deal imo – Greg Dean Oct 10 '08 at 4:28

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.