Re: [Mono-list] Open multiple c# dlls inside the same MonoDomain

2015-02-27 Thread mimi
Thanks for the reply. First time when I loaded my main assembly, the other assemblies the main assembly referenced were not loaded. Now everything is fine for the methods without parameters and am trying the methods with parameters. Thanks! Zachary -- View this message in context:

[Mono-dev] Endian problem - #27258

2015-02-27 Thread Neale Ferguson
This appears to solve the problem I reported that was causing build problems on s390x (big-endian). I get a clean build at least, and the tests in mono/mini mono/tests pass. I'm sure it is suboptimal (it seems that a generic method might be an option) but it illustrates what needs doing: ---

Re: [Mono-list] Open multiple c# dlls inside the same MonoDomain

2015-02-27 Thread Robert Jordan
On 26.02.2015 15:51, mimi wrote: Hi, I am trying to embed Mono in my Qt app. In my c++ code, I managed to invoke the methods of a single c# dll. Right now, I need to invoke the methods from one c# dll which, in turn, invoke the methods from other c# dll, how can I implement this in my c++ code?