How can you clean up objects holding resources from within
the code?
Answers were Sorted based on User's Feedback
Answer / ramesh
We can clean up object holding resources by using dispose()
method. Example
DataSet DS=new DataSet()
DS.Dispose()
Is This Answer Correct ? | 5 Yes | 1 No |
Answer / mohan kumar e.
We can cleanup objects by implementing IDisposable
interface and providing the implementation for Dispose
method.
Is This Answer Correct ? | 3 Yes | 1 No |
2 PROCEDURES FORT THIS:
1)Make that value of object as null once the scope is finished.
2)use dispose(); method
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / tarun singla
Easiest way is to make the value of that object as null,
once the scope of that object is over. We generally do this
in the 'finally' section of the code.
Is This Answer Correct ? | 0 Yes | 0 No |
What are the delegates in c#?
What is a class c#?
Do void methods have parameters?
What is an escape sequence in c#?
What are controls in c#?
what is a delegate? what it is used for?
13 Answers Choice Solutions, TCS,
What do u mean by thread safe?
What is a system lock?
What is the difference between CONST and READONLY?
What are methods in C#?
Distinguish between continue and break statement?
Distinguish between the Debug class and Trace class with its functionality?