Possible Duplicate:
Why structs cannot have destructors?
I know that structs in .NET do not have destructor, but its not exactly clear why they are limited in this way.
What technical reason that prevents structs to have destructor?
I know that structs in .NET do not have destructor, but its not exactly clear why they are limited in this way. What technical reason that prevents structs to have destructor? |
|||||||||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
Also See Destructors
|
|||
|
|
|
Destructor (Finalize) in C# is called implicitly from GC. It is used to free up the memory allocated in Heap. Reference type objects are stored in Heap. GC allocates and deallocate memory for only reference type and uses heap. |
|||||
|