Quantcast
Channel: Task Scheduler Managed Wrapper
Viewing all articles
Browse latest Browse all 2206

New Post: Do I need to dispose all the instances (Task, Trigger, Action, etc) which implemented interface “IDisposable”?

$
0
0
No. Those are created and disposed internally. Technically, due to the beauty of garbage disposal in C#, you don't need to manually dispose of anything. However, if you are worried about memory consumption while running your app, disposing the TaskService instance should clean up all memory previously used by the library.

Viewing all articles
Browse latest Browse all 2206

Trending Articles