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

The Archive Base Latest Questions

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

Is there a way to prevent extension methods from appearing for both derived and

  • 0

Is there a way to prevent extension methods from appearing for both derived and base types and limit them only to the base type?

My situation is a bit of a special case, but long story short, I have a scenario where it is safe to cast from a base entity to the derived entity and is also safe to cast from a List of derived entities to a List of base entities or vice versa. Since these cast’s would normally be unsafe, I am providing extension methods to do the casts so that developers using my library don’t have to remember which casts are safe and which are not.

The ToDerivedEntity extension method is implemented in relation to the BaseEntity, and while it doesn’t hurt anything to call ToDerivedEntity on a DerivedEntity, it would be nice, from a usability perspective, if I could prevent ToDerivedEntity from appearing on DerivedEntity and limit it only to the BaseEntity.

public class BaseEntity
{
}

public class DerivedEntity : BaseEntity
{
}

static class ExtensionMethods
{
    // Should only show up on BaseEntity.
    public static ToDerivedEntity(this BaseEntity source)
    {
        return (DerivedEntity)source;
    }
}
  • 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-16T06:04:39+00:00Added an answer on June 16, 2026 at 6:04 am

    No. You can’t do that. Extension methods apply to any derived type of the receiver. The best you can do is enforce such things dynamically (based on the runtime type of the object). i.e. throw an exception. But in this case that’s not appropriate. You want the method to be callable on an object of type derived.

    More importantly, this is not something you want to do, from an API design perspective. Consider “ToString()”. It also exists on String.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there a way to prevent users from getting into SQL Server Management Studio
Is there a way to prevent Castle Windsor from automatically injecting dependencies into properties
Is there a way to prevent a NSDrawer from being resized? I've tried setting
Is there a way to prevent a component from rendering in Flex (to save
Is there a way to prevent developers from committing code when certain unsafe or
Is there any way to prevent prevent a custom tool from running or remove
Is there a way to prevent the same person from referring itself? IP address
Is there a way to prevent users from committing without using --force when a
Is there a way to prevent empty elements of the form <myElement/> being used
Is there a way to prevent a user viewing an file but still use

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.