The source code to force an immediate garbage collection is given below. The given program is compiled and executed successfully.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
Program pObj = new Program();
GC.Collect(0);
Console.WriteLine("Garbage collection done forcefully");
Console.WriteLine();
}
}
}
Output:
Garbage collection done forcefully
Press any key to continue . . .
Program:
The source code to force an immediate garbage collection is given below. The given program is compiled and executed successfully.
Output:
need an explanation for this answer? contact us directly to get an explanation for this answer