show/hide this revision's text 2 added 286 characters in body

In the .NET world you always have the option of crreating a COM/ActiveX interop layer for your C#/VB.NET assembly.

You can then use the normal COM API from your C++ application to create an instance of this COM server that actually wraps your .NET assembly.

Good thing about this is that simple parameters such as int, boobool, string, float etc are mapped to their COM equivalent for you. However to my knowledge it is not possible to easily pass full .NET objects (instances of classes you create).

Also be aware that COM interop calls are relatively slow. You should not be calling a COM interop method continually from your C++ code in a tight loop.

COM/ActiveX have traditionally relied on the Windows Registry, not ideal as it is a big dependency. However it is also possible to to use Registration-Free COM interop to avoid this dependency.

This article covers the steps required to register a .NET assembly for COM interop.

show/hide this revision's text 1

In the .NET world you always have the option of crreating a COM/ActiveX interop layer for your C#/VB.NET assembly.

You can then use the normal COM API from your C++ application to create an instance of this COM server that actually wraps your .NET assembly.

Good thing about this is that simple parameters such as int, boo, string, float etc are mapped to their COM equivalent for you. However to my knowledge it is not possible to easily pass full .NET objects (instances of classes you create).

Also be aware that COM interop calls are relatively slow. You should not be calling a COM interop method continually from your C++ code in a tight loop.