I am looking for an example in which shows dispose pattern of .net with managed and un-managed resourced are allocated. In every text book only code snippets are shown.
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.
As of .net 2.0 it’s advised to use
SafeHandles to manage resources, as detailed on this MSDN page.MSDN has an example on its
IDisposable.DisposeMethod page, although as per comments, this is outdated.