Click here to Skip to main content
15,886,030 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 32.9K   166   13  
An inversion of control container with modules, decorators, commands, domain events and more.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Griffin.Container;

namespace Example3
{
    class Program
    {
        static void Main(string[] args)
        {
            var registrar = new ContainerRegistrar();
            registrar.RegisterConcrete<Hello>(Lifetime.Singleton); //<-- singleton
            var container = registrar.Build();

            // Will get
            var instance1 = container.Resolve<Hello>();
            instance1.World();

            // the same instance
            var instance2 = container.Resolve<Hello>();
            instance2.World();

            // every time = singleton
            var instance3 = container.Resolve<Hello>();
            instance3.World();


            Console.WriteLine("Press enter to quit");
            Console.ReadLine();
        }
    }
}

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