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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T05:50:05+00:00 2026-05-16T05:50:05+00:00

I have a peculiar problem here. I want to extract some generic types, which

  • 0

I have a peculiar problem here. I want to extract some generic types, which implements a generic interface from an assembly. I can accumulate all the types from the assembly but can not search for a particular implemented type from that type collection. Here are my code I am using, can you please point out what is the wrong with it? Or how can I achieve the goal?

using System.Reflection;
using System;
using System.Collections.Generic;

namespace TypeTest
{
    class Program
    {
        public static void Main(string[] args)
        {
            Test<int>();
            Console.ReadKey(true);
        }

        static void Test<T>(){
            var types = Assembly.GetExecutingAssembly().GetTypes();

            // It prints Types found = 4
            Console.WriteLine("Types found = {0}", types.Length); 

            var list = new List<Type>(); 

            // Searching for types of type ITest<T>      
            foreach(var type in types){
                if (type.Equals(typeof(ITest<>))) {
                    list.Add(type);
                }
            }

            // Here it prints ITest type found = 1 
            // Why? It should prints 3 instead of 1,
            // How to correct this?
            Console.WriteLine("ITest type found = {0}", list.Count); 
        }
    }

    public interface ITest<T>
    {
        void DoSomething(T item);
    }

    public class Test1<T> : ITest<T>
    {
        public void DoSomething(T item)
        {
            Console.WriteLine("From Test1 {0}", item);
        }
    }

    public class Test2<T> : ITest<T>
    {
        public void DoSomething(T item)
        {
            Console.WriteLine("From Test2 {0}", item);
        }
    }
}
  • 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-05-16T05:50:06+00:00Added an answer on May 16, 2026 at 5:50 am
    static void Test<T> ()
    

    You don’t need T in the declaration of your main function. Type instances are equal only if types are the same, not if one type is convertible to the other or implements the other. Supposing you want to find all types which implement ITest<> with any argument, this check should work:

    if (type == typeof (ITest<>) ||
        Array.Exists   (type.GetInterfaces (), i => 
            i.IsGenericType &&
            i.GetGenericTypeDefinition () == typeof (ITest<>))) // add this type
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a peculiar problem here and I can't by my life figure out
I have a peculiar problem, which I think that a lot of other people
I have a work around for this problem, but I've been noticing some peculiar
I have a very peculiar problem. In the VS2010 Server Explorer, I can connect
I have ran into a peculiar problem with NSXMLParser. For some reason it cuts
I have a peculiar problem. I need to read (from a txt file) using
I have a pretty peculiar problem with sending a SMS from the iPhone programmatically,
I seem to have run into a peculiar problem. Here is the code #read
I already done some searches but none of that can solve this peculiar,unexpected problem.
I have a peculiar problem. I was tasked with refactoring some old c code

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.