Calling base constructor in C#

I have the following hierarchy: class Base { public Base(string sMessage) { //Do stuff } } class Derived : Base { public Derived(string someParams) { string sMessage = "Blah " + someParams; //Here I want to call the base constructor //base(sMessage); } } Answers: Thank you for visiting the Q&A section on Magenaut. Please note … Read more