Question: Which code do you use if you want to trigger a garbage collection in .NET?
- `Garbage.CleanUp();`
- `System.GC.Clear();`
- `System.GC.Collect();`
- `Garbage.Collect();`
Answer: The correct answer of the above question is Option C:`System.GC.Collect();`