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

  • Home
  • SEARCH
  • 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 677619
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T01:03:33+00:00 2026-05-14T01:03:33+00:00

How can I recognize (.NET 2 ) a generic class? Class A(Of T) End

  • 0

How can I recognize (.NET 2) a generic class?

Class A(Of T)
End Class

' not work '
If TypeOf myObject Is A Then

?

  • 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-14T01:03:34+00:00Added an answer on May 14, 2026 at 1:03 am

    If c# it would be like this:

    public class A<T>
    {
    }
    
    A<int> a = new A<int>();
    
    if (a.GetType().IsGenericType && 
        a.GetType().GetGenericTypeDefinition() == typeof(A<>))
    {
    }
    

    UPDATED:

    It looks like this is what you really needed:

    public static bool IsSubclassOf(Type childType, Type parentType)
    {
        bool isParentGeneric = parentType.IsGenericType;
    
        return IsSubclassOf(childType, parentType, isParentGeneric);
    }
    
    private static bool IsSubclassOf(Type childType, Type parentType, bool isParentGeneric)
    {
        if (childType == null)
        {
            return false;
        }
    
        childType = isParentGeneric && childType.IsGenericType ? childType.GetGenericTypeDefinition() : childType;
    
        if (childType == parentType)
        {
            return true;
        }
    
        return IsSubclassOf(childType.BaseType, parentType, isParentGeneric);
    }
    

    And can be used like this:

    public class A<T>
    {
    }
    
    public class B : A<int>
    {
    
    }
    
    B b = new B();
    bool isSubclass = IsSubclassOf(b.GetType(), typeof (A<>)); // returns true;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Silverlight can only recognize its v2.0.5.0 assemblies. The way to consume .NET 2.x/3.x assemblies
Can we recognize which file is executable (i.e. chmod +x ) using Mono under
I'm just getting started with ASP.NET MVC, mostly by reading ScottGu's tutorial . To
I need to implement the common 'New Account' pattern (in .net MVC) where: user
I am using WCF RIA Services VS2008/.NET 3.5 and trying to do exception handling.
I have a component project build in VS2008 and targeting the .NET Framework 3.5.
Most languages allow fixed-length or finite-length lookbehind. One notable exception is .NET, which allows
I want to convert mouse's current X and Y coordinates into the 3D space
I will prevent a window from iTunes to be opened. I googled a lot

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.