internal void OnClassUnload(ClassUnloadEventArgs e) { var t = ClassUnload; if (t != null) { t(this, e); } }
private void HandleClassUnload(object sender, ClassUnloadEventArgs e) { if (e.SuspendPolicy == SuspendPolicy.All) Interlocked.Increment(ref _suspended); throw new NotImplementedException(); }
internal void OnClassUnload(ClassUnloadEventArgs e) { var t = ClassUnload; if (t != null) t(this, e); }