Question: Which code do you use if you want to trigger a garbage collection in .NET?

  1. `Garbage.CleanUp();`
  2. `System.GC.Clear();`
  3. `System.GC.Collect();`
  4. `Garbage.Collect();`

Answer: The correct answer of the above question is Option C:`System.GC.Collect();`