The mono-embedding tag has no wiki summary.
0
votes
0answers
3 views
Get generic type using Mono embedded
How to I create generic a List object using mono embedded calls? I can get List's MonoClass:
MonoClass* list = mono_class_from_name(mscorlibimage,
"System.Collections.Generic", "List`1");
and ...
1
vote
1answer
46 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
88 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
165 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
431 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 ...