Tagged Questions
2
votes
2answers
729 views
Send multiple messages between a native named pipe and a System.IO named pipe
I need to send multiple messages between a native named pipe and a System.IO named pipe. I got the code for both ends of this communication from the All-In-One Code Framework (IPC and RPC).
Server:
...
0
votes
2answers
170 views
MarshalAs attribute case study
When should we use this attribute and why do we need it? For example, if the native function in c takes as a parameter a pointer to unsigned char, and I know that it's needed to fulfill the array of ...
0
votes
2answers
568 views
C# Implement Late Binding for Native Code
We are working with an existing native application (most likely written in VB) that loads assemblies and calls methods with "Late Binding." We do NOT have access to its source code.
We want to ...
0
votes
1answer
180 views
TestDriven.NET and native C Library
I am working on a C# application that makes calls to a native Windows C dll. We use TestDriven.NET with xUnit for testing. The problem is, whenever we run unit tests that use the C library (which we ...