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

Plugin Architecture using C#

Rate me:
Please Sign up or sign in to vote.
3.71/5 (71 votes)
3 Aug 2003CPOL2 min read 448K   16.1K   265  
How to make plugins to work with .NET
using System;

namespace PlugIn
{
	/// <summary>
	/// Generic plugin interface
	/// </summary>
	public interface IPlugin
	{
		Int32 Add(Int32 a, Int32 b);
		string Name{get;set;}
		IPluginHost Host{get;set;}
		void Show();
	}

	/// <summary>
	/// The host
	/// </summary>
	public interface IPluginHost
	{
		bool Register(IPlugin ipi);
	}
}

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
Team Leader
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions