Question

I'm trying to embed a C# class in a C application using libmono, but the documentation is a bit lacking.

I'm trying to call a method with the prototype void MessageToSend(out MessageObject message);

How do i represent the "out parameter"? is it a pointer-to-a-pointer to a MonoObject? Thanks.

PS. as far as libmono is concerned, are 'out' and 'ref' parameters the same?

Was it helpful?

Solution

You're right, it's MonoObject**.

And out and ref is the same for pretty much everything except the C# compiler.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top