Рассмотрим приведенный ниже код:
public class Class1
{
public static int c;
~Class1()
{
c++;
}
}
public class Class2
{
public static void Main()
{
{
var c1=new Class1();
//c1=null; // If this line is not commented out, at the Console.WriteLine call, it prints 1.
}
GC.Collect();
GC.WaitForPendingFinalizers();
Console.WriteLine(Class1.c); // prints 0
Console.Read();
}
}
Теперь, хотя переменная c1 в основном методе выходит за пределы области действия и больше не ссылается на какой-либо другой объект при вызове GC.Collect()
, почему он не завершен там?