Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Imagine a project with a C# component and a C++ component. The C++ component is the old-school non .Net stuff (VC++ 6.0). What is an easy way to transfer objects between the two components? I'm tempted to use System.Xml.XmlSerializer, but I'm not sure how to start getting at the .Net libraries with this old VC++ app.

Maybe there's an even easier way that I haven't considered. Any suggestions?

share|improve this question

5 Answers

Have a look at C++/CLI. You can write a wrapper with it that translates between both worlds.

share|improve this answer
Far better then using COM, IMHO. – gimpf Feb 11 '10 at 15:43
@gimpf, seconded. COM simply sucks. – Eduardo León Apr 14 '11 at 17:18

How do you feel about using COM? .NET applications can both consume COM objects and can expose themselves as COM objects.

share|improve this answer
COM is incredibly complex AND it is incredibly slow. Unless the original C++ project already exposes a COM interface, using C++/CLI as glue between native C++ and .NET assemblies is a better alternative. – Eduardo León Apr 14 '11 at 17:23
@Eduardo: "COM is incredibly complex" is not a useful remark. Would the OP need to use all of the complexity, some of it, or more likely almost none of it? – John Saunders Apr 14 '11 at 18:26
@John Saunders: Any non-trivial subset of COM is incredibly complex. Even trivial subsets of it are. – Eduardo León Apr 14 '11 at 21:02
@Eduardo: you clearly don't know what you're talking about. Do you not know how easy it is to create a COM object in .NET? About as easy as it is to create one using VB6. – John Saunders Apr 14 '11 at 21:42
@John Saunders: It is as easy as useless. If you are going to create your components in .NET, why not create the applications that will consume them in .NET as well? The more usual case is that you want to consume a legacy COM component from a .NET application, not the other way around. – Eduardo León Apr 14 '11 at 22:50
show 1 more comment

Make the C++ a COM Object ?

share|improve this answer

If your C++ component is an unmanaged DLL exporting C-style functions "Platform Invoke" is another option. This technic allows access from .NET (C#) managed code to the unmanaged C++ code but not in the other direction.

share|improve this answer

Depending how large your project is, I would recompile the VC6 stuff as C++/CLI with VS 2008. Then you can access the .net stuff directly.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.