Example #1
0
        internal void OnClassUnload(ClassUnloadEventArgs e)
        {
            var t = ClassUnload;

            if (t != null)
            {
                t(this, e);
            }
        }
Example #2
0
        private void HandleClassUnload(object sender, ClassUnloadEventArgs e)
        {
            if (e.SuspendPolicy == SuspendPolicy.All)
                Interlocked.Increment(ref _suspended);

            throw new NotImplementedException();
        }
Example #3
0
 internal void OnClassUnload(ClassUnloadEventArgs e)
 {
     var t = ClassUnload;
     if (t != null)
         t(this, e);
 }