Click here to Skip to main content
15,892,298 members
Articles / Desktop Programming / Windows Forms

Diagrams with Reflector and the Graph Plug-in (Part 2)

Rate me:
Please Sign up or sign in to vote.
4.27/5 (7 votes)
23 Feb 2009CPOL6 min read 35.2K   1.1K   38  
Graphing other dependencies, without Reflector now.
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Text;

using Refractor.Common;

namespace Refractor.Plugins.ILDiagrams
{
    /// <summary>
    /// Show a diagram of all namespaces within an assembly.
    /// </summary>
    public partial class AssemblyNamespaces : BaseDiagram
    {
        public AssemblyNamespaces()
        {
            InitializeComponent();
        }

        public override string GetID()
        {
            return "Assembly Namespaces";
        }

        public override List<Type> GetHandledTypes()
        {
            return new List<Type> { typeof(AssemblyItem) };
        }

        public override WindowPluginKind GetKind()
        {
            return WindowPluginKind.ProjectItem;
        }

        protected override BaseGraphBuilder CreateBuilder()
        {
            return new AssemblyNamespacesGb();
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
United Kingdom United Kingdom
hughdoar@hotmail.com

Comments and Discussions