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.