Top "Unmanaged" questions

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

CallbackOnCollectedDelegate was detected

I am subclassing an application. My subclassed Window procedure is within a DLL. My subclassing code inside the DLL looks …

c# winapi unmanaged
What is an un/managed DLL? What is un/managed code?

Could someone please explain to me what an un/managed DLL is? And what is un/managed code?

dll unmanaged managed
How to analyze <unclassified> memory usage in windbg

This is a .NET v4 windows service application running on a x64 machine. At some point after days of running …

debugging memory windbg unmanaged
Merge several native DLLs into one DLL

I've got a lot of small DLLs which I would like to make into one big(er) DLL (as suggested …

dll merge unmanaged
C++: Getting the c3859 error code while compiling in a mix of C++/CLI and C++

After I have done as suggested by Hans Passant in C++: Getting the "error C2065: 'pst' : undeclared identifier" while using …

c++ c++-cli marshalling unmanaged
C# to C++/CLI to C DLL System.IO.FileNotFoundException

I'm getting System.IO.FileNotFoundException: The specified module could not be found when running C# code that calls a C++/…

c# build-process c++-cli unmanaged
Is this DLL managed or unmanaged?

I hold before you a DLL. Using only the Win32 SDK, can you tell me if this DLL is a .…

.net dll assemblies unmanaged managed
Performance of Managed C++ Vs UnManaged/native C++

I am writing a very high performance application that handles and processes hundreds of events every millisecond. Is Unmanaged C++ …

c++ performance unmanaged managed
Call c++ library from c#

This question might seem a repeat of previous ones. I have read through a series of posts, but not completely …

c# c++ unmanaged
Marshal.AllocHGlobal VS Marshal.AllocCoTaskMem, Marshal.SizeOf VS sizeof()

I have the following struct: [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Auto)] public struct WAVEHDR { internal IntPtr lpData; // pointer to locked …

c# .net winapi memory-management unmanaged