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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T18:56:01+00:00 2026-05-11T18:56:01+00:00

I’m trying to add another restriction on a method within a generic class. Is

  • 0

I’m trying to add another restriction on a method within a generic class. Is this possible?

Pseudocode:

public class MyBaseClass<T> where T: class
{
    public IQueryable<T> ShowThisMethod where T: class, IMyInterface
    {
         // stuff.
    }
}

ShowThisMethod should only be available when T is IMyInterface. Also IMyInterface should then give information back (about T) so that I can access properties defined in IMyInterface inside of the method.

Help 🙂

By the way, this compiles (and seems “almost right”):

public class MyBaseClass<T> where T: class
{
    public IQueryable<T> ShowThisMethod<T>() where T: class, IMyInterface
    {
        String X = T.MyInterfaceStringProperty;
    }
}

More Information about my goal:

I’m using a generic base class to access a common property (DateTime “Time” property on LINQ object Dinner which is also on Lunch).

Both objects are implementing ITimeable which exposes the DateTime property.

In my base class I’d like to have a method Select() which works on IQueryable&ltT> and can automatically filter based on the Time property. Because I’m working off the generic T, the time property is not visible to the base class, unless I tell it that T is implementing ITimeable.

I do want the same base class to work for other non-ITimeable objects too, that’s why I need the interface restriction on the Select method, and I also need it in order to access the Time property using generics.

Hope that clears the goal 🙂

P.S. My main concern is not visibility of the method in IntelliSense etc.. I’d just like to keep my base class working, while being able to access an interface-specified property through generics in it.

  • 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-11T18:56:01+00:00Added an answer on May 11, 2026 at 6:56 pm

    It depends on what you want.

    Since the class is compiled once, and the magic with generics also relies on the runtime, there’s no way to make a class that has some methods in some cases, and other methods in other cases. Either the methods are there, or they aren’t.

    So basically, there’s no way to declare MyBaseClass so that the following happens:

    MyBaseClass<Int32>  bc;
    bc. <-- intellisense does not show ShowThisMethod here
    
    MyBaseClass<SomeTypeImplementingIMyInterface> bc2;
    bc2. <-- intellisense DOES show ShowThisMethod here
    

    … that is… by itself.

    You can “trick” the compiler and intellisense into giving you what you’re asking for, but know that this gives you other limitations and challenges that might need to be solved.

    Basically, by adding an extension method to a static class declared alongside MyBaseClass, you can make intellisense, and the compiler, behave as if the method is only present for MyBaseClass when T has some specific rules, as you’re asking for.

    However, since the method in question will be a static method, defined outside of MyBaseClass, there’s limits to how much of the internals of MyBaseClass you can access, and you can’t access the method inside MyBaseClass, so it depends on what you want to accomplish and whether you can live with the limitations or not.

    Anyway, here’s the extension method. Note that you remove it completely from MyBaseClass at the same time:

    public static class MyBaseClassExtensions
    {
        public static IQueryable<T> ShowThisMethod<T>(this MyBaseClass<T> mbc)
            where T: class, IMyInterface
        {
            ...
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 114k
  • Answers 114k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer I do not think this is possible. 2-tier logs directly… May 11, 2026 at 10:16 pm
  • Editorial Team
    Editorial Team added an answer You can use ResGen.exe to explicitly regenerate the .resources and… May 11, 2026 at 10:16 pm
  • Editorial Team
    Editorial Team added an answer I've lived a similarly painful scenario. To win an argument… May 11, 2026 at 10:16 pm

Related Questions

I ran into a problem. Wrote the following code snippet: teksti = teksti.Trim() teksti
I am currently running into a problem where an element is coming back from
Seemingly simple, but I cannot find anything relevant on the web. What is the
Configuring TinyMCE to allow for tags, based on a customer requirement. My config is
Is it possible to replace javascript w/ HTML if JavaScript is not enabled on

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.