コード例 #1
0
ファイル: EventQueue.cs プロジェクト: weizhengwei/LangSvcV2
        internal void OnClassUnload(ClassUnloadEventArgs e)
        {
            var t = ClassUnload;

            if (t != null)
            {
                t(this, e);
            }
        }
コード例 #2
0
ファイル: JavaDebugProgram.cs プロジェクト: Kav2018/JavaForVS
        private void HandleClassUnload(object sender, ClassUnloadEventArgs e)
        {
            if (e.SuspendPolicy == SuspendPolicy.All)
                Interlocked.Increment(ref _suspended);

            throw new NotImplementedException();
        }
コード例 #3
0
ファイル: EventQueue.cs プロジェクト: Kav2018/JavaForVS
 internal void OnClassUnload(ClassUnloadEventArgs e)
 {
     var t = ClassUnload;
     if (t != null)
         t(this, e);
 }