Click here to Skip to main content
15,885,366 members
Articles / Programming Languages / C#

LinFu.IOC 2.0 in Five Minutes (Part 1 of n): Fun With Attributes

Rate me:
Please Sign up or sign in to vote.
4.98/5 (36 votes)
9 Dec 2008LGPL324 min read 95.5K   454   74  
The first article in a series of articles that describes how you can use the LinFu.IOC 2.0 container to extend your application(s).
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

using SampleInterfaces;

using LinFu.IoC;
using LinFu.IoC.Configuration;
namespace GreeterSample
{
    class Program
    {
        static void Main(string[] args)
        {
            // This is where it all begins and ends
            var container = new ServiceContainer();

            // Tell the container to configure itself 
            container.LoadFrom(AppDomain.CurrentDomain.BaseDirectory, "*.dll");

            // This is equivalent to:
            // IGreeter greeter = new Greeter(myName);
            // NOTE: I'm using a null parameter for the service name parameter
            // since I don't need a particular named service instance
            var myName = "Me";
            var greeter = container.GetService<IGreeter>(null, myName);

            // Say "Hello, Me!"
            greeter.Greet();
            return;
        }
    }
}

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 GNU Lesser General Public License (LGPLv3)


Written By
Software Developer (Senior) Readify
Australia Australia
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions