Version: 2023.1
LanguageEnglish
  • C#

PropertyDatabase.Dispose

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Declaration

public void Dispose();

Description

Dispose of the resources used by this PropertyDatabase.

You should try to always call dispose when you no longer need the PropertyDatabase. Even if it is recommended to keep the PropertyDatabase alive as much as possible and use the views when accessing it, calling dispose will make sure that the lock that prevents multiple openings on the same file will be removed properly. It also helps removing pressure on the C# garbage collection by preventing the finalizer from being called.