What are unmanaged objects? Can you please explain it in terms of the CLR? I learned on the internet that they say unmanaged objects don’t run under the CLR environment. Can you please give me an example of unmanaged objects?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Any memory not managed by the CLR memory management (i.e. garbage collector) is unmanaged memory.
An OS file handle is one example of unmanaged memory (under .NET and windows).
Ref: Cleaning Up Unmanaged Resources