I want to load COM objects in a C# application
COM
3
Posts
2
Posters
0
Views
1
Watching
-
I am tryng to create a C# application that will load a plugin that implements the following interface:
public interface IPlugin { bool OnMessage(IMessage Message); }
I am trying to create a language independent plugin. What do I have to do? How do you create a type library for this interface? I am not sure how to go about this.
-
I am tryng to create a C# application that will load a plugin that implements the following interface:
public interface IPlugin { bool OnMessage(IMessage Message); }
I am trying to create a language independent plugin. What do I have to do? How do you create a type library for this interface? I am not sure how to go about this.
-
Please find my postings in the following link. http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=530660&SiteID=1[^]
Sudeesh
Thanks I will have a look.