Click here to Skip to main content
15,885,914 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 LinFu.IoC;
using LinFu.IoC.Configuration;

namespace AdditionalParametersSample
{
    class Program
    {
        static void Main(string[] args)
        {
            // Configure the container
            var container = new ServiceContainer();
            container.LoadFrom(AppDomain.CurrentDomain.BaseDirectory, "*.dll");

            int result = container.GetService<int>("Add", 1, 1);

            Console.WriteLine("1 + 1 is: {0}", result);
            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