T
Tim Roberts
Larry goodman said:Im pretty sure you can mix managed and unmanage code even in the same
unit in c++.net
No, not easily, depending on how you define "unit". The original poster is
correct. Remember that Managed C++ emits MSIL, not x86 assembler, and
requires the Common Language Runtime to even get started.
An MC++ program can certainly call into unmanaged C++ DLLs, but you can't
link to unmanaged C++ object files.