Click here to Skip to main content
15,896,453 members
Articles / Programming Languages / C#

Tree Structured Enumerations

Rate me:
Please Sign up or sign in to vote.
3.32/5 (6 votes)
2 Apr 2008CPOL3 min read 77K   234   15  
The way to maintain a tree structured enumeration while having all the advantages of the standard ones
namespace TreeStructuredEnumerations
{
    [Structured(100)]
    public enum AnimalKind
    {
        Unknown         = 00000,

        DomesticAnimals = 00001,
          Dog           = 00100,
            Dalmatin    = 10000,
            Greyhound   = 10001,
            Malamute    = 10002,
            Terrier     = 10003,
          Cat           = 00101,
        
        WildAnimals     = 00002,
          Ape           = 00200,
            Chimpanzee  = 20000,
            Gorrila     = 20001,
            Orangutan   = 20002,
          Deer          = 00201
    }
}

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
Czech Republic Czech Republic
Contacts: EMAIL - smartk8@gmail.com

Comments and Discussions