Click here to Skip to main content
15,886,664 members
Articles / Programming Languages / C#

Having fun with Griffin.Container

Rate me:
Please Sign up or sign in to vote.
5.00/5 (4 votes)
16 Aug 2012CPOL13 min read 33K   166   13  
An inversion of control container with modules, decorators, commands, domain events and more.
using System;
using System.IO;

namespace Example6
{
    /// <summary>
    /// Class which will be created
    /// </summary>
    public class Hello : IPrintable, IInvokable
    {
        private static int _id;
        private int _myId;

        public Hello()
        {
            _myId = _id++;
        }

        public void World()
        {
            Console.WriteLine("Hello world, Id #" + _myId);
        }

        public void Print(TextWriter writer)
        {
            Console.WriteLine("Printing in #{0}", _myId);
        }

        public void DoSomeWork()
        {
            Console.WriteLine("Doing some work in #{0}", _myId);
        }
    }
}

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
Founder 1TCompany AB
Sweden Sweden

Comments and Discussions