vote up 1 vote down star
1

Given the following code, is there a way I can call class A's version of method X?

class A
{
  virtual void X() { Console.WriteLine("x"); }
}

class B : A
{
  override void X() { Console.WriteLine("y"); }
}

class Program
{
  static void Main()
  {
    A b = new B();
    // Call A.X somehow, not B.X...
  }
flag

80% accept rate
calling mr skeet. – Preet Sangha Aug 26 at 12:17

3 Answers

vote up 7 vote down check

You cannot. If you really need to do that, then there is a flaw in your design - i.e. that function shouldn't be virtual to begin with, or part of the base function should be extracted to a separate non-virtual function.

You can from inside B.X however call A.X

class B : A
{
  override void X() { 
    base.X();
    Console.WriteLine("y"); 
  }
}

But that's something else

link|flag
(Hi. Just for the record, somebody deleted the 'stupid-trick's tag that I added, and then somebody else deleted the comment pointing it out, making it look like I really want/need to do this. Would be useful to get notified of the dumb edits that people seem to want to make on SO.) – mackenir Oct 7 at 9:52
vote up 4 vote down

You can't, and you shouldn't. That's what polymorphism is for, so that each object has its own way of doing some "base" things.

link|flag
vote up 0 vote down

You can do it, but not at the point you've specified. Within the context of B, you may invoke A.X() by calling base.X().

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.