Top "Unmanaged" questions

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

Managed C++ to form a bridge between c# and C++

I'm a bit rusty, actually really rusty with my C++. Haven't touched it since Freshman year of college so it's …

c# clr c++-cli unmanaged
Is it possible to catch an access violation exception in .NET?

Is there anything I can do to catch an AccessViolationException? It is being thrown by a unmanaged DLL that I …

.net exception-handling unmanaged
Difference between managed and unmanaged in-app product android?

I went through the developer forum to know the difference between managed an unmanaged in-app products. they are saying that "…

android in-app-purchase unmanaged managed
Is there a tool that generates P/Invoke signatures for arbitrary unmanaged DLL?

I stumbled upon a tool that generates P/Invoke signatures for Microsoft's own unmanaged DLLs: PInvoke Interop Assistant Is there …

c# .net pinvoke unmanaged function-signature
C++/CLI Support in .Net Core

Our project structure is like, native.dll :- This contains pure native code written in c\c++. This native.dll …

c++-cli unmanaged .net-core managed-c++ coreclr
Unmanaged memory and Managed memory

what exactly are un-managed and managed memory? can anybody explain me in brief? Also, what exactly would mean when the …

memory ram unmanaged managed
How to convert an IntPtr back into an object

All, this is a follow up from a previous question here: C# formatting external Dll function parameters Here specifically is …

c# unmanaged marshalling intptr
How to get list of functions inside a DLL (managed and unmanaged)?

So I play around a DLL (UnityEditor.dll) I wanna to get a list of all functions inside of this …

c++ windows dll unmanaged
C#: Converting String to Sbyte*

My C# code uses a Managed C++ Wrapper. To make a new object of this Wrapper's type, I need to …

c# unmanaged
Create unmanaged c++ object in c#

I have an unmanaged dll with a class "MyClass" in it. Now is there a way to create an instance …

c# .net c++ unmanaged