CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 5 of 5
  1. #1
    Join Date
    Sep 2008
    Posts
    49

    Make my application compatible with plugins?

    this is not something I am directly familiar with, and I would like to know how to achieve this in C#, so that if I make an application, 3rd parties could create plugins for it...

  2. #2
    Join Date
    Jun 2008
    Posts
    2,477

    Re: Make my application compatible with plugins?

    ...Google

    http://www.drdobbs.com/cpp/184403942...RSKHWATMY32JVN

    And about 100,000 more results

  3. #3
    Join Date
    Sep 2008
    Posts
    49

    Re: Make my application compatible with plugins?

    Thanks, I know I should have googled it, but I wasn't exactly sure what I was searching for. apologies.

  4. #4
    Join Date
    May 2007
    Posts
    1,546

    Re: Make my application compatible with plugins?

    Of course, rather than re-inventing the wheel you could check out Mono.Addins or the Managed Extensibility Framework to provide the plugin backend. All you need to do then is define the various interfaces/extension points that you want people to be able to extend.
    www.monotorrent.com For all your .NET bittorrent needs

    NOTE: My code snippets are just snippets. They demonstrate an idea which can be adapted by you to solve your problem. They are not 100% complete and fully functional solutions equipped with error handling.

  5. #5
    Join Date
    Jun 2008
    Posts
    2,477

    Re: Make my application compatible with plugins?

    ^^ even better.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured