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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T01:12:38+00:00 2026-05-11T01:12:38+00:00

How do you declare a method in C# that should be overridden (or overridable)

  • 0

How do you declare a method in C# that should be overridden (or overridable) by a dereived class – possibly even outside your assembly – but that should be callable only from within the actual class?

(i.e. like a private virtual function in C++)

[edit]
private virtual is exactly what I intend: ‘Here’s a way to modify my behavior, but you are still not allowed to call this function directly (because calling it requires arcane invocations that only my base class shall do)’

So to clarify it: what is the best expression for that in C#?

  • 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. 2026-05-11T01:12:39+00:00Added an answer on May 11, 2026 at 1:12 am

    C# makes a stronger guarantee for ‘private’ than C++ does. In C++, you can indeed override a private virtual method. But that means that code in a base class can execute code in a derived class. Breaking the promise that the private method is truly private and can only be called by methods in the same class.

    Something that doesn’t help here is that C++ doesn’t require repeating the virtual keyword. Leading up to hard to reverse-engineer mysteries like this one:

    #include 'stdafx.h' #include <iostream>  class Base { private:     virtual void Method() = 0; public:     void Test() {         Method();     } }; class Derived : public Base { private:     void Method() { std::cout << 'Who the heck called me?'; } };  int _tmain(int argc, _TCHAR* argv[]) {     Base* p = new Derived;     p->Test(); } 

    I agree there’s a possible role for private inheritance. The C# language designers said No! though.

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

Sidebar

Ask A Question

Stats

  • Questions 87k
  • Answers 87k
  • 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 Datepicker: jQuery UI Datepicker Timepicker: timepickr plugin Bonus points, both… May 11, 2026 at 5:34 pm
  • Editorial Team
    Editorial Team added an answer No, Helvetica is not a "base font". The best definition… May 11, 2026 at 5:34 pm
  • Editorial Team
    Editorial Team added an answer You can create element and append characters to it until… May 11, 2026 at 5:34 pm

Related Questions

I'm building a wrapper for a jquery plugin to C# and I dont like
I've read all the advice on const-correctness in C++ and that it is important
My question concerns c# and how to access Static members ... Well I don't
I've seen some very good questions on Stack Overflow concerning delegates, events, and the

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.