Does c# supports destructors?
Answers were Sorted based on User's Feedback
Answer / praveen saxena
Yes and No,
C# supports destructors just to provide a familiar way fo
destructing objects for C++ developers. even syntax also is
same but internally its the dicpose method that does all
the work.
Even if you declare a destructor the compiler automatically
translates a destructor into an override of the
Object.Finalize() method. In other words, the compiler
translates the following destructor:
class Class1
{
~Class1(){}
}
Into the following code:
class Class1
{
Protected override void Finalize()
{
try{..}
finally { base.Finalize();}
}
}
I guess that makes things more clear.
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / k. amith kumar
Yes
Example:
class A
{
A(){} //Constructor.
~A(){} //Distructor.
.........
..........
}
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / vijay
yes.
when a objects created by Constructor are removed by
destructor
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / puneet
Desturctors are very much supported by c#. Internally a c#
destructor is converted to a finalize method call.
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / chinju
yes c# support destructor.it is used to delete object
explicitly.Dispose() is used for this.if we didn't write the
destructor explicitly it will call the default destructor ie
Finalize().always destructor is executed after the execution
of name space
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / mahesh
No, I didnt think distructor is supported by C# as far as
dispose() is concern it is used for clean up code like
finalize the object is distroyed automatically by garbage
collector
| Is This Answer Correct ? | 2 Yes | 2 No |
Answer / ashish gupta
i think it doesnt allow to use Destructor.
there is a method called Dispose() which automatically
calls destructor
| Is This Answer Correct ? | 2 Yes | 3 No |
What is uint64?
What is asp net in c#?
There are a class A. Another class B derived from it. Now if I do A a = new B(); and B b = new B(); What will happen in both the statements. And what is the difference between these two statements.
Can you prevent your class from being inherited and becoming a base class for some other classes?
What namespaces are necessary to create a localized application?
2 Answers Rolta, Siebel Systems, Visual Soft,
What language do desktop applications use?
What is use of hashtable in c#?
Can we use "this" command within a static method?
Explain jagged arrays in c#?
What is the difference between string and string in c#?
Code to run exe like mspaint,autocad etc in asp.net.
What is the implicit name of the parameter that gets passed into the set method/property of a class?
Visual Basic (800)
C Sharp (3816)
ASP.NET (3180)
VB.NET (461)
COM+ (79)
ADO.NET (717)
IIS (369)
MTS (11)
Crystal Reports (81)
BizTalk (89)
Dot Net (2435)
Exchange Server (362)
SharePoint (720)
WCF (340)
MS Office Microsoft (6963)
LINQ Language-Integrated Query (317)
WPF (371)
TypeScript (144)
Microsoft Related AllOther (311)