how to move vc# code into vc++ .net

G

Guest

hello
i want to use one project which is in vc# and i want to use in vc++ .net. how to do this.
 
C

Carl Daniel [VC++ MVP]

Kanaiya said:
hello,
i want to use one project which is in vc# and i want to use in
vc++ .net. how to do this.

Re-wire the code. C# and C++ are differentl languages and you con't simply
use C3 as if it were C++.

On the other hand, you can probably turn (much of) the C# code into a
library (DLL) if it isn't already. In that form, you can call that library
code directly from managed C++, so maybe you don't need to do any
re-writing.

-cd
 

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