Mega Code Archive

 
Categories / C# / Class Interface
 

Force the GC to invoke Finalize() for finalizable objects created in this AppDomain

using System; using System.Collections.Generic; using System.Text; public class MyResourceWrapper {     ~MyResourceWrapper() {         Console.Beep();     } } class Program {     static void Main(string[] args) {         MyResourceWrapper rw = new MyResourceWrapper();     } }