I am writing a wrapper class to call _CrtDumpMemoryLeaks() in WPF application. I am loading a C language DLL in the WPF application and would like to see if the there are any memory leaks in the DLL a
I have a managed service that receives files from users and I process the files and create audio files and xml files. I want to put the generated files from my service to a directory in Webserver
My main startup project is in c++. the solution involves also managed c# code. When I debug - I have breakpoints only on the unmanaged sections (on managed bre开发者_StackOverflow中文版akpoint it stat
I am trying to use shdocvw in a managed C++ program. I have read COM Interop using managed C++ - CodeProject. I used the instructions in How to add references to a managed Visual C++ project to create
I have written an C++/Cli wrapper for a native C++ dll, but when I call some method from C# I get an System.AccessViolationException error in my C++/Cli Wrapper dll! It\'s necessary to marshal the unm
I\'m searching for the possibility to show an application on a secure desktop under Windows 7. For explanation: The secure desktop is provided by Windows to avoid external applications to interact wit
I\'m trying to understand managed/unmanaged code as it pertains to structs and classes. I have a struct with a property of another struct but its a pointer declaration as in:
I want to make a C++/CLI wrapper of some C++ class. The problem is that I want the ref class to be initiated with a reference of the c++ object:
I\'ve this C++ function, bool MyClass::my_function(int num, TCHAR** filepath) I\'ve expose the function as
How do I build a vector of system::drawing::rectangle in c++? I tried vecor of std but got an error message that mixed types are not supported.W开发者_运维百科hat can I do?You can use the List<T>