7
Answers

what kind of inheritance is this?

public MyOwnCustomException (string message) : base(message) public MyOwnCustomException(string message, Exception inner) : base(message, inner) I thought only a Class can use inferitance, does a constructor can also use inheritance?

Answers (7)