Search Results

9
votes
9answers
1k views

How do I call a .NET assembly from C/C++?

Suppose I am writing an application in C++ and C#. I want to write the low level parts in C++ and write the high level logic in C#. How can I load a .NET assembly from my C++ program and start ca …
5
votes
13answers
725 views

Proper use of the IDisposable interface

I know from reading the MSDN documentation that the "primary" use of the IDisposable interface is to clean up unmanaged resources …
0
votes

How do I call a .NET assembly from C/C++?

I found this link to embedding Mono: http://www.mono-project.com/Embedding_Mono It provides what seems to be a pretty …