BolterLibrary.InterProcessCom.CurrentDomain_DomainUnload C# (CSharp) 메소드

CurrentDomain_DomainUnload() 정적인 개인적인 메소드

static private CurrentDomain_DomainUnload ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
리턴 void
        static void CurrentDomain_DomainUnload(object sender, EventArgs e)
        {
            Console.WriteLine("{0} Unloaded", ((AppDomain)sender).FriendlyName);
            GC.Collect();
            GC.WaitForPendingFinalizers();
        }