Click here to Skip to main content
15,891,253 members
Articles / Programming Languages / C#

A Flexible Plugin System

Rate me:
Please Sign up or sign in to vote.
4.98/5 (25 votes)
3 Sep 2008LGPL34 min read 131.3K   1.8K   163  
A generic plugin system used to load and manage plugins
using System;

namespace Fadd.Commands.Net
{
    /// <summary>
    /// A object binding. Used to copy properties from one object to another.
    /// </summary>
    public interface Binding
    {
        /// <summary>
        /// Copies the specified from.
        /// </summary>
        /// <param name="from">object to copy from.</param>
        /// <param name="to">objec to copy to.</param>
        /// <exception cref="ArgumentNullException">If either from or to are null</exception>
        /// <exception cref="ArgumentException">If "to" is not assignabled from "from".</exception>
        void Copy(object from, object to);
    }
}

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

Comments and Discussions