Top "Unmanaged" questions

Unmanaged refers to Windows code that is independent of the Common Language Runtime(CLR).

Where to place dlls for unmanaged libraries?

I am trying to create a Nuget package for a library that depends on ghostscript and therefore references gsdll32.dll …

dll dependencies unmanaged nuget
Marshaling pointer to an array of strings

I am having some trouble marshaling a pointer to an array of strings. It looks harmless like this: typedef struct { …

c# pinvoke unmanaged marshalling
How to get the name of a Win32 Thread?

I know of the non-intuitive process to set the name of a thread under Windows (see "How to set name …

c++ windows multithreading winapi unmanaged
C# unmanaged dll exporting (how it works)

I have found libraries that would export managed code as unmanaged so you can use it by unmanaged languages like …

c# export hook unmanaged managed
C# "Unmanaged Exports"

I've been trying to use the extension "Unmanaged Exports" by Robert Giesecke in a Visual Studio 2010 pro/C# project. Yet, …

c# unmanaged
array of wchar_t

I would like to have an array of wchar_t's. The following works: char** stringArray; int maxWords = 3; stringArray = new char*[…

c++ unmanaged visual-c++-2005 wchar-t wchar
OpenCV Unmanaged DLLs not found asp.net

We are building a web application (C# .NET) that uses unmanaged libraries in the form of the Emgu opencv wrapper. …

c# asp.net opencv unmanaged emgucv
P/Invoke to dynamically loaded library on Mono

I'm writing a cross-platform .NET library that uses some unmanaged code. In the static constructor of my class, the platform …

c# mono pinvoke unmanaged
Passing struct from unmanaged C++ to C#

Note: The final working solution is after the edit! I hope someone can help me with a problem I've been …

c# c++ unmanaged
Wrapping unmanaged C++ with C++/CLI - a proper approach

as stated in the title, I want to have my old C++ library working in managed .NET. I think of …

.net c++ unmanaged wrapper managed