Welcome, Guest Ohm namah shivoy
www.faqpanel.com
Home | ASP.Net | C-Sharp | Winforms | MS SQL | AJAX | XML | .Net Training*** | Search
Invite friends 
Extras 
VS Tips & Tricks
Top 10 .Net Tools
Special folders in ASP.Net
VS Find Combobox
 C-Sharp (C#) Interview Questions and Answers
What are Destructors?
A destructor is opposite to s constructor. It is called when an object is no more required. The name of the destructor is the same as the class name and is preceded by a tilde(~) sign. Like constructors, a destructor has no return type.

C# manages the memory dynamically and uses a garbage collector, running on a separate thread, to execute all destructors on exit. The process of calling a destructor when an object is reclaimed by the garbage collector is called finalization.

Note: Destructor takes no arguments.
What is the static constructor in C#?
What is refactoring?
Why should we use Anonymous method?
Can I use inline assembly or IL in C# code?
How do I launch Internet Explorer in C#?
Where should I use an Anonymous method?
Why strings are called Immutable data Type?
What is metadata?
What are the characteristics of C#?
What is the "Threading"?