Where does the dispose method lie and how can it be used to
clean up resources?
Answer / srinivas persineti
dispose method is in IDisposable interface,when you are
writing any class in .Net u should inherit the IDisposable
interface and u should implement the Dipoase method.in
dispose method u can call teh GC.Collect() to free up the
object.along with u can aslo call GC.SuppressFinalize() to
avoid multiple callings of GC.
| Is This Answer Correct ? | 4 Yes | 0 No |
What is singleton activation mode in .net?
What security measures exist for .NET Remoting in System.Runtime.Remoting?
Is .net capable of supporting multi-thread?
What are the differences between user control and server control?
What?s SingleCall activation mode used for?
Explain what is an anonymous method and how is it different from a lambda expression?
How to instantiate a delegate?
What is MSIL code ?
Is .net core stable?
Can we have same method with same name and signature using partial classes
What's the problem with .net generics?
How do you generate a strong name?