fork download
  1. using System;
  2.  
  3. class Bar
  4. {
  5. ~Bar() { Console.WriteLine("Finalized!"); }
  6. }
  7.  
  8. class Program
  9. {
  10. static void Main(string[] args)
  11. {
  12. Bar bar = new Bar();
  13. GC.Collect();
  14. GC.WaitForPendingFinalizers();
  15. Console.WriteLine("Press any key to exit...");
  16. Console.ReadLine();
  17. }
  18. }
Success #stdin #stdout 0.03s 36848KB
stdin
Standard input is empty
stdout
Finalized!
Press any key to exit...