I am working on a project. In that C++ code is referencing to a Class Library which is written in C#. I want to pass Object of C++ Classes to C# Class library. So Is this possible, If yes please let me know how ?? otherwise I will have to pass around 100 arguments to C# Class Library.
Regards, Vivek
you shoul use marshling.
Marshaling is the process of creating a bridge between managed code and unmanaged code; it is the homer that carries messages from the managed to the unmanaged environment and reverse. It is one of the core services offered by the CLR (Common Language Runtime.)
namespace
System.Runtime.InteropServices.Marshal
Read here a good blog about marshling