Tagged Questions

17
votes
6answers
8k 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 { ...
13
votes
5answers
693 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 ...
12
votes
5answers
366 views

Precise definition of the term 'marshalling'

In the .NET world, does marshalling mean just the preparation of an object/data for transfer across some boundary or over a wire OR does it mean the preparation and transfer across a boundary or over ...
9
votes
4answers
6k views

C++ .NET convert System::String to std::string

How do you convert System::String to std::string in C++ .NET?
9
votes
2answers
13k views

Marshal “char *” in C#

Given the following C function in a DLL: char * GetDir(char* path ); How would you P/Invoke this function into C# and marshal the char * properly. .NET seems to know how to do LPCTSTR but when I ...
8
votes
4answers
445 views

Why can't I return a char* string from C++ to C# in a Release build?

I'm attempting to call the following trivial C function from C#: SIMPLEDLL_API const char* ReturnString() { return "Returning a static string!"; } With the following P/Invoke declaration (with ...
8
votes
6answers
1k views

What is marshalling? What is happening when something is “marshalled?”

I know this question has been asked, at least here. But there wasn't a satisfactory answer, at least not to me. There is a lot of talk about marshalling as regards interoperating with unmanaged code, ...
7
votes
6answers
189 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
4answers
380 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
401 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 ...
6
votes
2answers
73 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
559 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 ...
5
votes
2answers
152 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
2answers
194 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
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
4answers
6k 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: ...
5
votes
3answers
1k views

Runtime callable wrapper (RCW) scope - process or application domain?

What is the scope of Runtime Callable Wrapper (RCW), when referencing unmanaged COM objects? According to the docs: The runtime creates exactly one RCW for each COM object, regardless of the ...
4
votes
3answers
93 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
1answer
207 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. ...
4
votes
3answers
486 views

How do I marshal a struct that contains a variable-sized array to C#?

How do I marshal this C++ type? The ABS_DATA structure is used to associate an arbitrarily long data block with the length information. The declared length of the Data array is 1, but the actual ...
4
votes
2answers
301 views

Pass socket from .NET to unmanaged C++ code

I currently have a .NET program initiating a connection to a server. Sometimes I need to call a special unmanaged C++ code, which uses the connection to the server. How to pass and use socket ...
4
votes
1answer
399 views

How to correctly marshal VB-Script arrays to and from a COM component written in C#

I'm building a COM object in C# (.Net 4.0) to be used in an classic asp site. Now I'd like to know what's the proper way to marshal VB-Script arrays (single and multidimensional) back and forth ...
4
votes
1answer
138 views

Default IMarshal implementation?

I am trying to implement registry-free COM explicilty in my code (can't use registry-free COM via an app manifest since that only works on the exe level): I create a static class that loads the COM ...
4
votes
6answers
407 views

How is marshalling performed when C++ code is called from C++/CLI?

According to this question it's possible to seamlessly combine managed and unmanaged code using C++/CLI. I don't quite get it - shouldn't there be marshalling between managed and unmanaged anyway? ...
4
votes
1answer
830 views

How to marshal int* in C#?

I would like to call this method in unmanaged library: void __stdcall GetConstraints( unsigned int* puiMaxWidth, unsigned int* puiMaxHeight, unsigned int* puiMaxBoxes ); My solution: ...
4
votes
1answer
84 views

How can I find out if an instance is a MarshalByRef proxy?

I know there's a way, I know I've done it (a long time) before, but I can't remember or find out how to do it!!! var otherDomain = AppDomain.Create("Lol my memory sucks"); var myRemotableType = ...
4
votes
2answers
1k views

Marshalling .NET generic types

Here is a C# program that tries Marshal.SizeOf on a few different types: using System; using System.Runtime.InteropServices; [StructLayout(LayoutKind.Sequential)] class AClass { } ...
4
votes
1answer
1k views

How to marshal a variable sized array of structs? C# and C++ interop help

I have the following C++ structs struct InnerStruct { int A; int B; }; struct OuterStruct { int numberStructs; InnerStruct* innerStructs; }; And a C++ function OuterStruct ...
4
votes
2answers
3k views

Marshal C++ “string” class in C# P/Invoke

I have a function in a native DLL defined as follows: #include <string> void SetPath(string path); I tried to put this in Microsoft's P/Invoke Interop Assistant, but it chokes on the "string" ...
4
votes
2answers
4k views

Converting std::vector<>::iterator to .NET interface in C++/CLI

I am wrapping a native C++ class, which has the following methods: class Native { public: class Local { std::string m_Str; int m_Int; }; typedef ...
3
votes
0answers
139 views

Passing an array of strings from managed C# to unmanaged function using P-Invoke

Is it possible to pass a string array from managed C# to an unmanaged function using P-Invoke? This works fine: [DllImport("LibraryName.dll")] private static extern void Function_Name(string ...
3
votes
1answer
289 views

How to pinvoke a variable-length array of structs from GetTokenInformation() safely for 32-bit and 64-bit? C#

I'm following the pinvoke code provided here but am slightly scared by the marshalling of the variable-length array as size=1 and then stepping through it by calculating an offset instead of indexing ...
3
votes
1answer
188 views

How does the CLR marshal a structure containing only a single field when calling unmanaged code?

By default, how will the CLR marshal a structure that contains only a single field, but defines multiple methods, properties, operators, etc., when calling an unmanaged function through P/Invoke? A ...
3
votes
1answer
209 views

What does “Invalid managed/unmanaged type combination.” mean?

I have the following struct: [StructLayout(LayoutKind.Auto,Pack=0)] private unsafe struct BIRDSYSTEMCONFIG { public byte bySystemStatus; public byte byError; ...
3
votes
2answers
151 views

Is there generally a noticeable performance hit when calling PInvoke on Win32 / COM methods?

I'm wondering whether anyone has a decent explanation or overview on the negative aspects of using DLLImport / PInvoke on Win32 methods from managed .Net code? I plan to make use of various Win32 ...
3
votes
2answers
107 views

What's the difference between Marshal.GenerateGuidForType(Type) and Type.GUID?

Type classType = typeof(SomeClass); bool equal = Marshal.GenerateGuidForType(classType) == classType.GUID; I haven't found a case that fail this condition. So why and when should I use the Marshal ...
3
votes
3answers
2k views

GCHandle, Marshal, managed and unmanaged memory : To pin or Not To Pin

As Hans Passant wishes here is the scenario of mine. I have a mixed mode application in which the native code does all the hard work while respecting the performance and managed code is responsible ...
3
votes
2answers
1k views

How can I marshall a vector<int> from a C++ dll to a C# application?

I have a C++ function that produces a list of rectangles that are interesting. I want to be able to get that list out of the C++ library and back into the C# application that is calling it. So far, ...
3
votes
3answers
2k views

Marshal.PtrToStructure (and back again) and generic solution for endianness swapping

I have a system where a remote agent sends serialized structures (from an embedded C system) for me to read and store via IP/UDP. In some cases I need to send back the same structure types. I thought ...
3
votes
1answer
779 views

How do I marshal a pointer to an array of pointers to structures?

I have a C function with the following signature: int my_function(int n, struct player **players) players is a pointer to an array of pointers to struct player objects. n is the number of pointers ...
3
votes
2answers
2k views

Passing c# string to unmanaged c++ DLL

I have a simple application that loads an unmanaged dll and passes a few string values to it from C#. But in the C++ dll application, I receive an exception :: Tried to access a read/write protected ...
3
votes
5answers
772 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
2answers
361 views

How can I ignore a field when marshalling a structure with P/Invoke

I want to marshal a structure for use with P/Invoke, but this struct contains a field that is only relevant to my managed code, so I don't want it to be marshaled since it doesn't belong in the native ...
2
votes
1answer
52 views

Access Violation Exception at Marshal.StructureToPtr in Win7 + .NET 4.0 (WinXP + .NET 3.5 works fine)

Here is my code: internal void Show() { if (Parent == null) throw new NullReferenceException(); EDITBALLOONTIP ebt = new EDITBALLOONTIP(); ebt.cbStruct = ...
2
votes
3answers
33 views

ERROR_FILE_NOT_FOUND unexpectedly returned for OpenBackupEventLog function

I'm trying to open an .evtx file on a Windows 7 x64 machine using the OpenBackupEventLog function however I keep on getting ERROR_FILE_NOT_FOUND (error code 2) even though the file does exist. My ...
2
votes
1answer
110 views

C# Marshal uint*& parameter

I'M browsing through the whole stackoverflow forum but I'm quite unsure if my marshalling solution fits to my problem. I got a c++ method returning an array of integer via a parameter. The prototype ...
2
votes
1answer
154 views

C# bool arrays, COM interop, and access violations

I have a COM component written in C++. One of the MIDL interfaces has a function defined like: HRESULT __stdcall GetValues( int length, [ref, size_is(*length)] VARIANT_BOOL out[]); ...
2
votes
4answers
199 views

A Problem in Pinvoke

I have the following function in C++ native dll, and I want to use it in a C# app. DWORD __cdecl Foo( LPCTSTR Input, TCHAR** Output, DWORD ...

1 2 3