Tagged Questions
17
votes
6answers
9k views
Reading a C/C++ data structure in C# from a byte array
What would be the best way to fill a C# struct from a byte[] array where the data was from a C/C++ struct? The C struct would look something like this (my C is very rusty):
typedef OldStuff { ...
14
votes
5answers
712 views
Why it is called Marshalling? [closed]
Possible Duplicate:
Why is the concept of Marshalling called as such?
Why the conversion between two types is called Marshalling! What is the meaning behind Marshal, why we don't just use ...
14
votes
7answers
774 views
Calling COM visible managed component from managed code through COM wrapper
I have a 3rd party component, lets say FIPreviewHandler to handle preview, which implements IPreviewHandler. FIPreviewHandler is implemented as a Managed Component, and uses the IPreviewHandler ...
10
votes
1answer
405 views
P/Invoke, c#: unsigned char loosing a byte
Im working towards a dll file for a software's SDK and i'm trying to call a function to get information about the host of the software.
there are two unsigned char variables(HostMachineAddress, ...
10
votes
3answers
3k views
C# P/Invoke: Marshalling structures containing function pointers
Sorry for the verbose introduction that follows. I need insight from someone knowing P/Invoke internals better than I do.
Here is how I'm marshalling structures containing function pointers from C to ...
9
votes
3answers
189 views
Why do C# and VB.NET implicitly marshal char* differently?
So I have a function, written in C++, that looks like this...
extern "C" __declspec(dllexport) int __stdcall SomeFunction(char *theData)
{
// stuff
}
... and I'm using it in my current project ...
9
votes
1answer
164 views
Detecting cross-thread marshaling by COM RCW objects in C#
I'm working in a large multithreaded C# application handling bunches of COM interop. The other developers and I have ample opportunity to accidentally call Single-Threaded Apartment (STA) COM objects ...
9
votes
2answers
376 views
Marshalling a char** in C#
I am interfacing with code that takes a char** (that is, a pointer to a string):
int DoSomething(Whatever* handle, char** error);
Basically, it takes a handle to its state, and if something goes ...
8
votes
2answers
852 views
How to read a Delphi Array of Fixed Sized Strings within a packed record in c#
I need to read a blob field from a database into a c# app.
However the blob field was written to the database by a Delphi App using the following method:
procedure WriteABlob(Blob : TBlobField; var ...
8
votes
1answer
5k views
How do I GetCustomAttributes?
I have tried the following code using the 2.0 framework and I get an attribute back, but when I try this on the compact framework, it always returns an empty array. The MSDN documenation says its ...
8
votes
5answers
28k views
Marshal C++ struct array into C#
I have the following struct in C++:
#define MAXCHARS 15
typedef struct
{
char data[MAXCHARS];
int prob[MAXCHARS];
} LPRData;
And a function that I'm p/invoking into to get an array of 3 ...
7
votes
3answers
1k views
C# Marshalling double* from C++ DLL?
I have a C++ DLL with an exported function:
extern "C" __declspec(dllexport) double* fft(double* dataReal, double* dataImag)
{
[...]
}
The function calculates the FFT of the two double arrays ...
7
votes
2answers
546 views
How to marshal structs with unknown length string fields in C#
I get an array of bytes, I need to unmarshal it to C# struct.
I know the type of the struct, it has some strings fields.
The strings in the byte array appears as so: two first bytes are the length of ...
7
votes
4answers
508 views
Why does LayoutKind.Sequential work differently if a struct contains a DateTime field?
Why does LayoutKind.Sequential work differently if a struct contains a DateTime field?
Consider the following code (a console app which must be compiled with "unsafe" enabled):
using System;
using ...
7
votes
1answer
582 views
When to use RelaseComObject vs FinalReleaseComObject?
When should I use Marshal.FinalReleaseComObject vs Marshal.ReleaseComObject?
Is there any danger in using Marshal.FinalReleaseComObject?
7
votes
6answers
196 views
P/Invoke: How to know which type to marshall from?
Is there a one-stop shop for determining which .Net types/attributes to use, given a native type?
Example would look something like this:
Native Type | .Net Type
...
7
votes
3answers
577 views
Fastest way to access VB6 String in C#
I am using COM Interop. I have a call in VB6 which returns a string of roughly 13000 chars. If I execute the call in pure VB6 it takes about 800ms to execute. If I execute it via c# and COM Interop it ...
7
votes
4answers
392 views
Marshalling what is it and why do we need it?
What is marshalling and why do we need it.
I find it hard to believe that i cannot send an int over the wire from c# to c and have to marshall it. Why cant c# just send the 32bits over with a ...
7
votes
3answers
418 views
Layout of .NET value type in memory
I have the following .NET value types:
[StructLayout(LayoutKind.Sequential)]
public struct Date
{
public UInt16 V;
}
[StructLayout(LayoutKind.Sequential)]
public struct StringPair
{
public ...
7
votes
4answers
2k views
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 ...
6
votes
2answers
81 views
What's the difference between HandleRef and GCHandle?
What's the difference between HandleRef and GCHandle?
http://msdn.microsoft.com/en-us/library/system.runtime.interopservices.handleref.aspx
...
6
votes
2answers
97 views
if GetFields() doesn't guarantee order, how does LayoutKind.Sequential work
I need to get fieldinfo in a guaranteed order with respect to declaration order. Right now I'm using attributes to specify order.
Is there a more automatic way of doing this?
Does anyone have ...
6
votes
3answers
302 views
Correct usage of DllImport
Suppose there is a c++ method int NativeMethod(double, double *) in a Native.dll. My first attempt at calling this method from managed code was (assuming I don't need to specify the entry point)
...
6
votes
3answers
456 views
Exposing a C++ API to C#
So what I have is a C++ API contained within a *.dll and I want to use a C# application to call methods within the API.
So far I have created a C++ / CLR project that includes the native C++ API and ...
6
votes
2answers
584 views
Marshal.PtrToStringUni() vs new String()?
Suppose i have a pointer of type char* to unicode string, and i know the length:
char* _unmanagedStr;
int _unmanagedStrLength;
and i have 2 ways to convert it to .NET string:
...
6
votes
3answers
1k views
.NET Remoting Singleton memory leak, TCP, Marshal by Reference
I am using the simplest example of remoting that I could find, sharing an object between a windows service and a windows forms program (client), running on the same machine.
The service instantiates ...
6
votes
7answers
2k 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 ...
5
votes
2answers
102 views
Multiple function calls from C# to C++ unmanaged code causes AccessViolationException
I have declared a DLL import in my C# program that looks like this:
[DllImport("C:\\c_keycode.dll", EntryPoint = "generateKeyCode",
CallingConvention = CallingConvention.Cdecl)]
static ...
5
votes
2answers
180 views
Marshalling array of structs from .NET to C++: when does it do copying?
Consider a struct like System.Drawing.Point - one with LayoutKind.Sequential and containing only primitive members. I have a C# array of such structs.
I'm passing it to an (unmanaged) C++ function ...
5
votes
1answer
334 views
How to pass C# array to C++ and return it back to C# with additional items?
I have a C# project which is using a C++ dll. (in visual studio 2010)
I have to pass a array of int from C# code to C++ function and C++ function will add few elements in array, when control comes ...
5
votes
2answers
225 views
.NET Marshal.PtrToStringUni(IntPtr) vs. new String(char*)
What's the difference between new String(char*) and Marshal.PtrToStringUni(IntPtr), aside from the obvious fact that one takes char* and one takes IntPtr? When should I use which?
I remember getting ...
5
votes
3answers
191 views
Cross-Thread Exception - Environment Only
A control can only be accessed by the thread that created it - this much I know.
I have a DataGridView with a
DataSource based on a BindingList<>.
I have a worker thread (non-GUI)
that runs ...
5
votes
2answers
490 views
Receiving a char* from c++ into c#, and passing it back again
I'm having memory leak issues with a third party c++ dll. For certain calls, the dll allocates memory for the string, passes it out as a char* and then expects to receive that pointer back so that it ...
5
votes
5answers
476 views
How to Get array of string from Native Code(C++) in Managed Code(C#)
is there any way through which we can get the collection of string from c++ to c#
C# Code
[DllImport("MyDLL.dll")]
private static extern List<string> GetCollection();
public static ...
5
votes
1answer
113 views
How to specify whether to take ownership of the marshalled string or not?
suppose I have x.dll in C++ which looks like this
MYDLLEXPORT
const char* f1()
{
return "Hello";
}
MYDLLEXPORT
const char* f2()
{
char* p = new char[20];
strcpy(p, "Hello");
return p;
...
5
votes
3answers
1k views
Binary serialization/de-serialization in C++ and C#
I am working on a distributed application which has two components. One is written in standard C++ (not managed C++ and running on a Linux platform) and the other one is written in C#. Both are ...
5
votes
5answers
1k views
L prefix for strings in C++
I have a static library. This library have the following function defined
int WriteData(LPTSTR s)
The sample to call the function is
LPTSTR s = (LPTSTR) L"Test Data";
int n = WriteData(s);
...
5
votes
2answers
1k views
Cannot call COM object created from STAThread from oher STA threads
I am new to COM and trying to understand the difference between STA and MTA. I tried to create an example that would show that COM can manage calls to object created in STA that is not thread-safe.
...
5
votes
2answers
627 views
Cannot marshal a struct that contains a union
I have a C++ struct that looks like this:
struct unmanagedstruct
{
int flags;
union
{
int offset[6];
struct
{
float ...
5
votes
1answer
2k views
Marshalling array of strings to char ** in C#. Must be quite easy (if you know how ;-)
I'm calling a C DLL function and need to supply the following C struct:
typedef struct
{
char *mTableId;
char **mFieldNames;
int mNumFields;
char *mFilter;
...
5
votes
4answers
7k views
Convert array of structs to IntPtr
I am trying to convert an array of the RECT structure (given below) into an IntPtr, so I can send the pointer using PostMessage to another application.
[StructLayout(LayoutKind.Sequential)]
public ...
5
votes
2answers
2k views
Do I need to delete structures marshaled via Marshal.PtrToStructure in unmanaged code?
I have this C++ code:
extern "C" __declspec(dllexport) VOID AllocateFoo(MY_DATA_STRUCTURE** foo)
{
*foo = new MY_DATA_STRUCTURE;
//do stuff to foo
}
Then in C# I call the function thus:
...
4
votes
1answer
65 views
Marshal.StructureToPtr fails with bool and fixed size array?
If I marshal this struct with StructureToPtr and then unmarshal it again with PtrToStructure, my first node has y = {1,2} whilst my second node has y = {1,0}.
I've no idea why, perhaps my struct is ...
4
votes
3answers
105 views
Why can I not use Marshal.Copy() to update a struct?
I have some code intended to get a struct from a byte array:
public static T GetValue<T>(byte[] data, int start) where T : struct
{
T d = default(T);
int elementsize = ...
4
votes
2answers
152 views
Fixed Size Array of Structure type
how do I declare fixed-size array of a structure type in C# :
[StructLayout(LayoutKind.Sequential,Pack=1), Serializable]
public unsafe struct MyStruct{
...
}
public class MyClass {
...
...
4
votes
1answer
156 views
Get ListView item text from other window
I want to make a little application that changes the default playback device in windows 7. The only solution was to interact with the Sound Applet. I succeeded to get the handle to the SysListView32 ...
4
votes
2answers
183 views
Improper marshaling: C# array to a C++ unmanaged array
I have the following C# code with a structure definition (CInput), obj definition and init, and a call to a C++ (native) DLL function (that has also been written by me).
//C# code
public struct ...
4
votes
2answers
222 views
Pass multi - dimensional array from managed code to unmanaged code
I would like to do the following:
Create three dimesinal array in c# code like this:
var myArray = new short[x,y,z];
UnanagedFunction(myArray);
Pass it to unmanaged code (c++) like this:
void ...
4
votes
1answer
161 views
How to pin a pointer to managed object in C#?
Unmanaged code calls my functions. In first function I sould pass back pointer to my managet object. Sometimes later some of my othrer functions got called with that same pointer as one of parameters ...
4
votes
1answer
242 views
How expensive is using MarshalByRefObject compared to serialization?
In my Azure web role code I have a CustomIdentity class derived from System.Security.Principal.IIdentity. At some point .NET runtime tries to serialize that class and serialization wouldn't work. ...