Click here to Skip to main content
15,891,184 members
Articles / Desktop Programming / Win32

Evolving Responsible, Self-Describing Components

Rate me:
Please Sign up or sign in to vote.
4.81/5 (9 votes)
25 Apr 2008CPOL21 min read 23K   64   29  
How self-describing components can emerge from responsibility-driven development practices, and how use of the Visual Studio 'code regions' tool can add value to this process.
/*
 * Copyright 2008 Oculo Consulting Limited
 * 
*/
using System;

namespace ResponsibilitiesExample
{
    public interface IMessageHandler
    {
        void PutMessage(IMessage message);
    }
}

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) Oculo Consulting Limited
United Kingdom United Kingdom
Matthew Cannon is a software developer and architect who has for the last 10 years focused on object-oriented design. His areas of interest are OOD, patterns, Agile practices, C# and all things .Net.

Comments and Discussions