destruction of a variable or array in C#

c#, destructor, variables

Solution

You don't. Just let the reference go out of scope and it'll be automatically garbage-collected.

Problem

I have a variable or array, which I no longer needed. How to destroy them? Sorry for noob-question.

Original source