Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If I inherit from a base class and want to pass something from the constructor of the inherited class to the constructor of the base class, how do I do that?

For example,

If I inherit from the Exception class I want to do something like this:

class MyExceptionClass : Exception
{
     public MyExceptionClass(string message, string extraInfo)
     {
         //This is where it's all falling apart
         base(message);
     }
}

Basically what I want is to be able to pass the string message to the base Exception class

share|improve this question
2  
Its also worth noting you can chain constructors in your current class by substituting this for base. – Quibblesome Aug 15 '08 at 13:30
I have done this when moving from Java to C#, hahaha. – guillegr123 Jun 23 '12 at 22:51

4 Answers

up vote 327 down vote accepted

Modify your constructor to the following so that it calls the base class constructor properly:

public class MyExceptionClass : Exception
{
    public MyExceptionClass(string message, string extrainfo) : base(message)
    {
        //other stuff here
    }
}

Note that a constructor is not something that you can call anytime within a method. That's the reason you're getting errors in your call in the constructor body.

share|improve this answer
9  
I think you may have missed the point. The problem was about calling a base constructor midway through the overriden constructor. Perhaps the data-type of the base constructor is not the same or you want to do some data moulding before passing it down the chain. How would you accomplish such a feat? – Marchy Feb 16 '09 at 21:03
50  
If you need to call the base constructor in the middle of the override, then extract it to an actual method on the base class that you can call explicitly. The assumption with base constructors is that they're absolutely necessary to safely create an object, so the base will be called first, always. – Jon Limjap Feb 17 '09 at 10:46
8  
It is just a method you can call any time, IL-wise. C# just happens to put extra restrictions on top of this. – romkyns Apr 17 '11 at 3:03
2  
@romkyns touche, but few of us are doing anything that involves IL rewriting, :p – Jon Limjap Apr 19 '11 at 10:46

Note that you can use methods within the call to the base constructor...

    class MyExceptionClass : Exception
    {
         public MyExceptionClass(string message, string extraInfo) : 
         base(ModifyMessage(message, extraInfo))
         {
         }

         private static string ModifyMessage(string message, string extraInfo)
         {
             Trace.WriteLine("message was " + message);
             return message.ToLowerInvariant() + Environment.NewLine + extraInfo;
         }
    }
share|improve this answer
31  
ModifyMessage needs to be static here.. – Sprintstar Aug 17 '10 at 11:56
Just what I needed! Thanks! – Tom Winter Jan 21 '11 at 19:49
this looks to be the more appropriate answer – Asher Apr 4 '11 at 12:26
3  
fascinating but less readability. – Ramiz Uddin May 26 '11 at 11:46
2  
after seeing this Ruby would say KEEP IT SIMPLE SILLY! – Ramiz Uddin May 26 '11 at 11:48
public class MyExceptionClass : Exception
{
    public MyExceptionClass(string message,
      Exception innerException): base(message, innerException)
    {
        //other stuff here
    }
}

You can pass inner exception to one of the constructors.

share|improve this answer

If you need to call the base constructor but not right away because your new (derived) class needs to do some data manipulation, the best solution is to resort to factory method. What you need to do is to mark private your derived constructor, then make a static method in your class that will do all the necessary stuff and later call the constructor and return the object.

public class MyClass : BaseClass
{
    private MyClass(string someString) : base(someString)
    {
        //your code goes in here
    }

    public static MyClass FactoryMethod(string someString)
    {
        //whatever you want to do with your string before passing it in
        return new MyClass(someString);
    }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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