Click here to Skip to main content
15,898,222 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.Text;
using System.Drawing;

namespace Refractor.Common
{
    [Serializable]
    public class ProjectDefinition
    {
        private List<string> _filenames = new List<string>();
        public List<string> Filenames { get { return _filenames; } set { _filenames = value; } }

        private List<FavouritesItem> _favourites = new List<FavouritesItem>();
        public List<FavouritesItem> Favourites { get { return _favourites; } set { _favourites = value; } }

        private List<string> _favouritesPaths = new List<string>();
        public List<string> FavouritesPaths { get { return _favouritesPaths; } set { _favouritesPaths = value; } }

        private List<string> _windows = new List<string>();
        public List<string> Windows { get { return _windows; } set { _windows = value; } }

        private List<string> _items = new List<string>();
        public List<string> Items { get { return _items; } set { _items = value; } }

        private string _projectItem = string.Empty;
        public string ProjectItem { get { return _projectItem; } set { _projectItem = value; } }
    }
}

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