Click here to Skip to main content
15,895,746 members
Articles / Programming Languages / C#

Generic Tree Control

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
8 Feb 2009CPOL2 min read 25K   184   16  
An article on a generic tree collection
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;

using Precio.Collections;


namespace Precio.Basic
{
    /// <summary>
    /// 
    /// </summary>
    /// <author>Martin Dahlstedt 2006 (m_dahlstedt@hotmail.com)</author>
    [Serializable()]
    public sealed class BasicTree : Tree<BasicNodeValue>
    {
        /// <summary>
        /// Constructor for BasicTree.
        /// </summary>
        /// <param name="nodeValue">Root node.</param>
        public BasicTree(BasicNodeValue nodeValue)
            : base(nodeValue)
        {
            
        }
    }
}

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
Software Developer (Senior) B3IT
Sweden Sweden
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions