Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8920461
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T06:16:32+00:00 2026-06-15T06:16:32+00:00

I want to know that how design application , actually applications like Firefox or

  • 0

I want to know that how design application , actually applications like Firefox or Chrome that you can download add-on for them and use ??!!
How do it in .Net ???

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T06:16:33+00:00Added an answer on June 15, 2026 at 6:16 am

    How to allow others to make Add-Ons for your app?

    1>You create a DLL which has an interface.This interface defines a set of methods,properties,events you want others to define and implement.

    the plugin developer need to define this interface.This DLL is required by your app and the plugin developer..

    2>The plugin developer would use that shared DLL and implement the interface by defining the methods or properties in it.

    3>Your app would now load that plugin and cast it to the shared DLL’s interface and then call the desired methods,properties i.e anything that was defined in the interface..

    How would your App fetch plugins?

    You create a folder where you would search for the plugins.This is the folder where others plugins would be installed or placed.


    Example

    This is your shared dll

    //this is the shared plugin
    namespace Shared 
    {
        interface IWrite 
        {
            void write();
        }
    }
    

    The plugin devloper

    //this is how plugin developer would implement the interface
    using Shared;//<-----the shared dll is included
    namespace PlugInApp 
    {
        public class plugInClass : IWrite //its interface implemented
        {
            public  void write() 
            {
                Console.Write("High from plugInClass");
            }
        }
    }
    

    this is your program

    using Shared;//the shared plugin is required for the cast
    class Program
        {
            static void Main(string[] args)
            {
                //this is how you search in the folder
                foreach (string s in Directory.GetFiles(AppDomain.CurrentDomain.BaseDirectory, "*PlugIn.dll"))//getting plugins in base directory ending with PlugIn.dll
                {
                    Assembly aWrite = Assembly.LoadFrom(s);
                    //this is how you cast the plugin with the shared dll's interface
                    Type tWrite = aWrite.GetType("PlugInApp.plugInClass");
                    IWrite click = (IWrite)Activator.CreateInstance(tWrite);//you create the object
                    click.write();//you call the method
                }
            } 
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to know that how can I add help support to my winform
I want to know that, is something like this, possible? : #test{ background-color: red;
i want to know that when we want to use push notification service.From where
i want to know that why do we add an app.config file in c#
I'm writing a graphic design application for Android where the user can add several
I want to know that is there any better method to do : var
I want to know that how to follow a page on Twitter using android
I want to know that how one should proceed in building animated splash screen.
I want to know that how voice recognition in android works? Which library it
I want to know that does apple's Push Notification Server generate new device token

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.