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 exa
class Exception { public Exception(string message) { [...] } } class MyExceptionClass : Exception { public MyExceptionClass(string message, string extraInfo) : base(message) { [...] } }