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 8270713
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T06:39:54+00:00 2026-06-08T06:39:54+00:00

I want to allow developers that use my product to be able to extend

  • 0

I want to allow developers that use my product to be able to extend the product by implementing an interface and then just dropping the assembly into the executing folder.
How should I go about finding these types, do I have to run thru every single DLL in the folder or can I avoid those that are part of the original application?

  • 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-08T06:39:55+00:00Added an answer on June 8, 2026 at 6:39 am

    In the end I elected to simply load up and search thru all dlls that I found in the bin.
    Here is most of the code. the key function it the “IsAssignableToGenericType” function which finds the generic Interface I am looking for.

    I beleive this is the link that provided most of the solution
    Implementations of interface through Reflection

    static AssemblyLocator()
        {
            AllDlls = GetAllDlls();
            SubscribersInBin = GetSubscribersInBin();
        }
    
        public static IEnumerable<Type> TypesImplementingInterface(Assembly[] assemblies, Type desiredType)
        {
            return assemblies
                .SelectMany(assembly => assembly.GetTypes())
                .Where(type => IsAssignableToGenericType(type, desiredType));
        }
    
        public static bool IsAssignableToGenericType(Type givenType, Type genericType)
        {
            if (givenType == null) throw new ArgumentNullException("givenType");
            if (genericType == null) throw new ArgumentNullException("genericType");
    
            var interfaceTypes = givenType.GetInterfaces();
    
            foreach (var it in interfaceTypes)
            {
                if (it.IsGenericType)
                {
                    if (it.GetGenericArguments()[0].Name.Equals(genericType.GetGenericArguments()[0].Name))
                        return true;
                }
            }
    
            Type baseType = givenType.BaseType;
            if (baseType == null) return false;
    
            return (baseType.IsGenericType &&
                baseType.GetGenericTypeDefinition() == genericType) ||
                IsAssignableToGenericType(baseType, genericType);
        }
    
        private static ReadOnlyCollection<string> GetAllDlls()
        {
            string binFolder = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
            IList<string> dllFiles = Directory.GetFiles(binFolder, "*.dll", SearchOption.TopDirectoryOnly).ToList();
            return new ReadOnlyCollection<string>(dllFiles);
        }
    
        private static ReadOnlyCollection<Type> GetSubscribersInBin()
        {
            IList<Assembly> assembliesFoundInBin = new List<Assembly>();
            foreach (var item in AllDlls)
            {
                var assembly = System.Reflection.Assembly.LoadFrom(item);
                assembliesFoundInBin.Add(assembly);
            }
    
            var typesInBin = TypesImplementingInterface(assembliesFoundInBin.ToArray(), typeof(ISubscriber<T>));
            return new ReadOnlyCollection<Type>(typesInBin.ToList<Type>());
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Let's say I want to allow my developers to upload their war files to
I want to allow the interface to change only if the flag enableRotation=1. I’ve
I want to allow uploads of very large files into our PHP application (hundred
I want to allow the user to click a start point and then click
I want to allow the user to use lowercase or uppercase letters giving the
I'm rewriting a JavaScript project, and I want to be able to use object
I want to allow users of an iPhone app to upload photos and use
We want to use the popular major.minor.update.build_number versioning scheme. Our next product update will
I want to allow user to upload a file of txt ,doc or pdf
I want to allow a user to download an html file using a php

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.