plugin object in C#

  • Thread starter Thread starter Mr. X.
  • Start date Start date
How can I make plugin object in C# ?

..NET has excellent possibilities for creating plugins. From
simple load of class and instantiation via reflection over
use og IoC framework like Spring.NET and a config file to
the huge add-in framework.

Arne
 
Give me an example, please.
Thanks :)

Arne Vajhøj said:
.NET has excellent possibilities for creating plugins. From
simple load of class and instantiation via reflection over
use og IoC framework like Spring.NET and a config file to
the huge add-in framework.

Arne
 
C# is on VS 2008.
I cannot compile this code.
Where is IPlugin.
I did : using PlugIn;
but it cannot be compiled.
 
C# is on VS 2008.
I cannot compile this code.
Where is IPlugin.
I did : using PlugIn;
but it cannot be compiled.

IPlugin is the interface that all you plugins implements.

Arne
 
Back
Top