TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Kg P
NA
12
3k
Is IDisposable interface just used for standardization ?
Apr 15 2017 2:28 PM
Hi, I might be thinking wrong, please correct if I am wrong.
To cleanup memory (Specially for unmanaged resources), we implement IDisposable interface and impelement Dispose method in which we write our custom logic to free memory.
So, my question is that as we are writing our own logic to free memory, can't we do same in any public method of our cass ?
Means actually we don't need IDisposable and Dispose method for this ? May be we use these for this kind of reasons-
1. Just for standardization that they are same across all applications
2. Once we say class implements IDisposable interface, we make sure that we don't miss dispose method implementation as we'll get error
if we forgot to give implementation for dispose method.
OR there is some other reason for using IDisposable. Please share your thoughts.
For example-
public class MyClass{
public void ReleaseMemory(){
ReleaseMemory(true);
GC.SuppressFinalize();
}
public void ReleaseMemory(bool releasing){
//all memory cleanup logic
}
}
Does this solve the purpose without implementing IDisposable interface ??
Reply
Answers (
2
)
Searching clients from database table
How the execution flow happen in Inheritance.