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

Document Digest Model: A Different Point of View

Rate me:
Please Sign up or sign in to vote.
4.33/5 (2 votes)
14 Feb 2010CPOL7 min read 14.9K   129   9  
A class library to internalize the tag structure of XML-like documents into classes

namespace ddm.Base.Settings
{
    internal class Delimeter
    {
        public Delimeter()
        {
        }
        internal string Begin { get; set; }
        internal string End { get; set; }
        internal string Type { get; set; }
    }

    internal class StandartDelimeter : Delimeter
    {
        public StandartDelimeter()
        {
        }

        public StandartDelimeter(string begin, string end, string type)
        {
            Begin = begin;
            End = end;
            Type = type;
        }
    }
}

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
Turkey Turkey
I am a software developer emphasizing algorithm side of development.

Comments and Discussions