S
Stephen Walch
When my managed C++ application calls standard C functions like strncmp and
malloc, am I making an expensive transition between managed and unmanaged
code? If so, are there alternate "pure managed" versions of these libraries
that I can link to?
Also, is doing "new char[1024]" in managed code invoking an unmanaged (and
therefore expensive) heap allocator? What is the most performant way to
allocate memory in managed C++?
Thanks, Steve
malloc, am I making an expensive transition between managed and unmanaged
code? If so, are there alternate "pure managed" versions of these libraries
that I can link to?
Also, is doing "new char[1024]" in managed code invoking an unmanaged (and
therefore expensive) heap allocator? What is the most performant way to
allocate memory in managed C++?
Thanks, Steve