How can I destroy objects in C#?
Posted
by peril brain
on Stack Overflow
See other posts from Stack Overflow
or by peril brain
Published on 2010-03-15T16:34:38Z
Indexed on
2010/03/15
16:39 UTC
Read the original article
Hit count: 170
c#
What are the methods to destroy object in C#, besides these:
object_instance = null;
System.GC.collect();
Please suggest only inbuilt techniques, not other tools like bigcannon, etc.
© Stack Overflow or respective owner