Tagged Questions

1
vote
2answers
52 views
+100

How can I prevent CompileAssemblyFromSource from leaking memory?

I have some C# code which is using CSharpCodeProvider.CompileAssemblyFromSource to create an assembly in memory. After the assembly has been garbage collected, my application uses more memory than it …
2
votes
3answers
85 views

Are double* and double** blittable types? C#

Hello, I have a question regarding marshalling of C++ arrays to C#. Does the double* automatically convert to double[]? I know double is a blittable type, so double from C++ is the same as double …
1
vote
4answers
59 views

How do I unmarshal a ruby object in java?

I have a an object that I'd like to grab the contents of in java. The only problem is that is is currently in ruby. irb(main):050:0> blah => …
5
votes
8answers
409 views

Call unmanged Code from C# - returning a struct with arrays

[EDIT] I changed the source as suggested by Stephen Martin (highlighted in bold). And added the C++ source code as well. Hi, I'd like to call an unmanaged function in a self-written C++ dll. This …
1
vote
5answers
109 views

Marshalling an array of structures from C++ to C#

In my C# code I'm trying to fetch an array of structures from a legacy C++ DLL (the code I cannot change). In that C++ code, the structure is defined like this: struct MyStruct { char* id; …
3
votes
3answers
89 views

Boolean Marshalling with LayoutKind.Explicit, Is this broken or failing as designed?

First of all the Boolean type is said to have a default marshal type of a four-byte value. So the following code works: struct A { public bool bValue1; public int iValue2; …
2
votes
4answers
59 views

Copy bytes in memory to an Array in VB.NET

Hello, unfortunately I cannot resort to C# in my current project, so I'll have to solve this without the unsafe keyword. I've got a bitmap, and I need to access the pixels and channel values …
0
votes
1answer
53 views

C#: passing array of strings to a C++ DLL

I'm trying to pass some strings in an array to my C++ DLL. The C++ DLL's function is: extern "C" _declspec(dllexport) void printnames(char** ppNames, int iNbOfNames)<br> {<br> …
1
vote
2answers
40 views

C#: calling C++ DLL with char** argument

I would like to call this C++ function from my C# code: void GetArrayOfNames(char** names, int nbOfNames); To call it in C++, I just define an array of char*: char* aNames[20]; And allocate each …
1
vote
3answers
163 views

Marshalling struct with embedded pointer from C# to unmanaged driver

Hi, I'm trying to interface C# (.NET Compact Framework 3.5) with a Windows CE 6 R2 stream driver using P/Invoked DeviceIoControl() calls . For one of the IOCTL codes, the driver requires a …
0
votes
1answer
92 views

Marshalling and converting VB6 code to .NET

I am having trouble converting some code from VB6 to VB.NET (I don't have as much experience with .NET). When I run the 'Select function (from the WS2_32.dll library) in .NET, using the same …
0
votes
0answers
59 views

C# - Buffer Corruption with Marshal.Copy()

I am receiving an IntPtr and an int specifying the number of bytes it points to. The data can contain any characters including null, EOL, etc. When trying the following, the buffer is corrupted: …
1
vote
2answers
57 views

Marshalling structs from WM_COPYDATA messages

I am trying to get a C# WPF application to communicate with another application written in C using WM_COPYDATA. The C app is trying to send a struct as follows: typedef struct { int x; int y; …
0
votes
1answer
60 views

Marshalling strings, C++ to C#: ‘conversion is not supported by the library’

Summary: When attempting to use marshalling to pass string data into a C++ DLL from C#, I'm getting 'msclr::interop::error_reporting_helper<_To_Type,_From_Type>::marshal_as': This …
1
vote
3answers
122 views

Why does marshalling a struct of callback delegates cause an AccessViolationException

Introduction I am trying to use P/Invoke to register a struct of callbacks with a native dll. When calling a function that makes the native dll invoke the callbacks an AccessViolationException …

1 2 3 4 5 8 next
15 30 50 per page