Dispose() and null
For example:
SomeObject obj1 = SomeObject(); SomeObject obj2 = SomeObject(); obj1.Dispose(); obj2 =null; Console.WriteLine(obj1 == obj2); |
What would be the result of executing the above statements (suppose SomeObject only inhreits the default Dispose method)?

