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

  • Thread starter Thread starter Guest
  • Start date Start date
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.
 
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
 
Back
Top