I created a class which is inherited from interface
IDisposable. Now if I use object of this class with using
keyword. Then How the dispose method will get call. Does
garbage collector call it or some else.

Answers were Sorted based on User's Feedback



I created a class which is inherited from interface IDisposable. Now if I use object of this class ..

Answer / amit kumar mishra

public void Dispose()
{
GC.SupressFinalize(this);
}

Is This Answer Correct ?    2 Yes 1 No

I created a class which is inherited from interface IDisposable. Now if I use object of this class ..

Answer / imatoria

http://msdn.microsoft.com/en-us/magazine/cc163392.aspx

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More C Sharp Interview Questions

What is the difference between proc. Sent by val and by sub?

0 Answers  


What is c sharp used for?

0 Answers  


What do you use c# for?

0 Answers  


what is application domain?

4 Answers   Kanbay,


what is the diference between casting and converting?

2 Answers  


Explain the different types of delegates used in c#.

0 Answers  


Is c# and c same?

0 Answers  


Can a class have static constructor?

0 Answers  


Is c# code is unmanaged or managed code?

0 Answers  


What is a method c#?

0 Answers  


Can hashset contain duplicates c#?

0 Answers  


What is difference between static and constant variable?

0 Answers  


Categories