I am trying to call unmanaged code using C#. extern \"C\" __declspec(dllexport) LPBYTE DataReceived(LPBYTE signals)
I am stuck in c# implementation side, as I am pretty new to it. The thing is, I want to pass a \'pointer\'(having memory) from c# code so that My c++ application can copy pchListSoftwares buffer to pc
There are 2 binaries. One is native/unmanaged C++ dll and other is managed c# exe. Now what I am doing is writing a function in c++ dll and allocated memory inside it using malloc. I exported this fun
I\'ve inherited a half completed application that seems to use a model that I\'m not sure can reliably work.
I am getting exception when i am trying to pass unmanaged object, to COM method in method written in managed C++/CLI class. Following is the code sample
I\'m a newbie for .Net and trying to use managed threading. I couldn\'t find any problem in my code, but it triggers an exception when the Thread Ends.
We have a lot of legacy code written in C/C++ that maintains data in shared memory structures.In the C/C++ implementations, for a lot of functions, we get a pointer to the shared memory address then c
I am building a prototype for a quantitativ开发者_如何学Ce library that does some signal analysis using image processing techniques. I built the initial prototype entirely in C#, but the performance i
I\'ve developed a simple windows forms application to capture the windows of a video chat application (inbound, aka Remote, and outbound, aka Local).
I need to use an unmanaged VC++ dll. It has the following two functions that require C# wrappers: bool ReadData(byte* byteData, byte dataSize);