Released on November 7, 2024
The IMinutesFieldManager objects created with the IEstimate.GetMinutesFieldManager method have caused memory leaks. This could be visible in the Task Manager in Memory, GDI Objects, USER Objects and Handles columns. While it was not noticeable under normal circumstances, it could lead to exceptions in edge cases when the objects were created several hundred times.
The IMinutesFieldManager interface implements IDisposable now and the objects must be disposed now. The user should always call Dispose() method or even better, use a 'using' block in C# or 'Using' block in VB.