var a = MyClassInstance;
MyClassInstance = null;
//if (a !=null){ //why }
I think that a points to MyClassInstance and MyClassInstance equals null, then a must be equals null too. But a is not null and I don't understand why.
I think that |
|||
|
|
The variable |
|||
|
|
|
|
|||||||||
|
|
Because you are assigning In fact, you cannot directly free the memory your class instance occupies; this is what the garbage collector is for. It looks if there are any references (think pointers, but not) to your instance left, and if none remain, the object is deleted/collected from memory. Maybe this makes it clearer: http://en.csharp-online.net/Value_vs_Reference |
|||
|
|
|
The variable of a reference type instance is mainly a pointer to a memory address - so your example is comparable to
Or in other words: the variable is the reference, not the object itself. So the second variable is a copy of the reference. |
|||||
|