K
Kimmo Laine
Hello,
what does the null assignment means in C#:
CMyClass mc = new CMyClass();
// Do something with mc
mc = null;
What does the "mc = null"-line actually means: is the mc, and the memory and
resources it has allocated, released?
thx
Kimmo Laine
what does the null assignment means in C#:
CMyClass mc = new CMyClass();
// Do something with mc
mc = null;
What does the "mc = null"-line actually means: is the mc, and the memory and
resources it has allocated, released?
thx
Kimmo Laine