The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
33 views

Embedded Mono: EXC_BAD_ACCESS (SIGSEGV) when calling mono_jit_cleanup()

I'm embedding Mono runtime into existing Cocoa application. I've built the latest runtime from GitHub (master branch) and exiting application after running some managed code gives me this during the ...
1
vote
1answer
81 views

How to get an array field from an object when embedding mono

I am embedding mono into an application i'm writing. One of the objects I have created looks like this: public class MessageObject { public byte messagetype; public byte[] message; } If i use ...
10
votes
1answer
161 views

embedding mono with C# “out parameters”

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); ...
0
votes
1answer
366 views

Embedded Mono: How to use 'mono_runtime_invoke' on different thread

Hi i'm using Embedded Mono with NaCl. Everything is working so far but idk how to invoke a .NET method from c thats not on the same thread as the .NET exe was executed on. Here is the method i'm ...