Reputation: 97
Can you tell me what changes between libraries external managed and unmanaged? is the exact same thing between managed and unmanaged code?
Upvotes: 3
Views: 9725
Reputation: 59258
Yes, a managed library contains .NET code (also called an assembly), an unmanaged library contains native code of some sort (C++, VB6 or similar).
External usually means that you didn't compile it yourself but use a 3rd party component.
To check whether as assembly is managed or not,
Upvotes: 6