C++/CLI and unmanaged code

R

r.x.k.miller

I am looking to interface some C++/CLI code to a big old C/C++
library. The library really is legacy stuff (goto's and setjump/
longjumps abound).

Can anyone point me to some up to date information about interop
between these two domains, relevant to .NET 3.5? Any general advice?

I understand standard C++, and I have used C#.NET to a lesser extent,
but most of the articles I have found about linking the two are out of
date.
 
M

Mark Salsbery [MVP]

I am looking to interface some C++/CLI code to a big old C/C++
library. The library really is legacy stuff (goto's and setjump/
longjumps abound).

Can anyone point me to some up to date information about interop
between these two domains, relevant to .NET 3.5? Any general advice?

I understand standard C++, and I have used C#.NET to a lesser extent,
but most of the articles I have found about linking the two are out of
date.


With a mixed-mode C++/CLI assembly, you should be able to use the library as
usual.

What am I missing here? :)

Mark
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top