force the GC to invoke Finalize() for finalizable objects created in this AppDomain.
using System;
using System.Collections.Generic;
using System.Text;
publicclass MyResourceWrapper {
~MyResourceWrapper() {
Console.Beep();
}
}
class Program {
staticvoid Main(string[] args) {
MyResourceWrapper rw = new MyResourceWrapper();
}
}