コード例 #1
0
        // Remove the Assembly ``e.Assembly'' from the TreeView
        private void _on_assembly_unload(Object sender,
                                         DebuggedAssemblyEventArgs e)
        {
            _history("Assembly Unload: " + e.Assembly.Name);
            AssemblyNode an = m_procn.Get(e.Assembly);

            an.Remove();
        }
コード例 #2
0
 // Add the Assembly ``e.Assembly'' to the TreeView, underneath the
 // correct AppDomain.
 private void _on_assembly_load(Object sender, DebuggedAssemblyEventArgs e)
 {
     _history("Assembly Load: " + e.Assembly.Name);
     AssemblyNode an = m_procn.Add(new AssemblyNode(m_iasm, e.Assembly));
 }