Originally posted by: Sam He
The dot net tutorial and walk throughs only demonstated on how to reuse C function in managed code. What if I have an existing class library written in C++ and I want to reuse this library without rewriting all the classes?
I can think of one way to do it. That is to create COM objects for every class. But that is going to be a lot of work. Is there any way to reuse the unmanaged C++ library as easy as reusing C functions in a DLL?
Thanks for any thoughts.
Sam
Originally posted by: ashish ranjan
good article. I have a c dll which exposes a function whose parameter is an array pointer....how to do marshalling in this case?
Reply