Search Results

9
votes
9answers
928 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 …
0
votes
3answers
229 views

The “Self-Factory” Pattern

I don't know if there is an official name for this, but I have been playing with what I like to call the "self-factory" pattern. Basically, it's when an abstract base class acts as a factory for i …
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 …