Q:

C# program to force an immediate garbage collection (GC.Collect() Method)

0

C# program to force an immediate garbage collection (GC.Collect() Method)

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program:

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 . . .

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now