vote up 3 vote down star

I have a abstract base C# class with a couple of methods that has to be overrided. How can I enforce this? Right now I throw an exception as a base implementation

    public virtual string Description
    {
        get { throw new NotImplementedException(); }
    }

    public virtual string ErrorMessage
    {
        get { throw new NotImplementedException(); }
    }

That solution however feels a bit wrong and very little intuitive ... Are there other ways to solve this in C#?

flag

2 Answers

vote up 16 vote down check

Make the properties (these are not methods in your example) abstract.

public abstract string Description{ get; }

public abstract string ErrorMessage{ get; }
link|flag
Damn ... Didn't know that. Of course. I only thought abstract was applicable on classes. – Riri May 22 at 12:20
3  
If you just want a getter (like in the question) you can use public abstract string Description { get; }. – Josef May 22 at 12:24
Don't you have to use the { get; } part? I don't think it compiles without it. – configurator May 22 at 13:00
vote up 3 vote down

In case of method you should make them abstract

public abstract void Method();
link|flag

Your Answer

Get an OpenID
or

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