vote up 0 vote down star

I see the terms managed and unmanaged used a fair bit around here. Searching online I can get a fuzzy notion of what they are, but what I really need to know is how it affects me as C# desktop app developer? How do I know which I'm dealing with at any point and how does it change my approach to that code?

Duplicate

http://stackoverflow.com/questions/334326/what-is-managed-unmanaged-code-in-c

flag

closed as exact duplicate by George Stocker, Andrew Grant, R. Bemrose, Greg Hewgill Feb 11 at 19:38

1 Answer

vote up 0 vote down check

Managed code is code that needs the .NET framework to run... unmanaged code doesn't. If you are writing code in C# you are writing managed code. You might interface with unmanaged code if you use Pinvoke, but if you stick to pure C# your application will be all managed code.

link|flag
@Jon T: Thanks, Jon, that's the nice succinct sort of answer I was looking for. – Robert Gowland Feb 12 at 14:52

Not the answer you're looking for? Browse other questions tagged or ask your own question.