Mixing managed and unmanaged code

P

Paul.Lee.1971

If I had two C++ classes, identical in just about every way, except
that one was managed and the other wasn't, what speed benefits, or
pitfalls would occur if they called native unmanaged C++ code?

TIA

Paul
 
P

Paul.Lee.1971

If I had two C++ classes, identical in just about every way, except
that one was managed and the other wasn't, what speed benefits, or
pitfalls would occur if they called native unmanaged C++ code?

TIA

Paul
--http://www.paullee.com

I've done some more research on this and there is a horrible daisy-
chaining cascade of function calls:

function A calls function B // function A is managed C++, B isn't
B calls C // in this format B(C()); C is managed C++
C calls D // D is unmanaged C++

what would this call chain do the latencies in the programme. Roughly
speaking ;)

TIA

Paul
 

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