In java this is how a DerivedClass can implement it's BaseClass's constructor.
public DerivedClass extends BaseClass
{
//some properties
public DerivedClass(param)
{
super(param);
}
}
I have learnt C-Sharp's base() does the similar thing, but when I replace super(param) with base(param), it does not gives what I'm expecting. How can I implement this code snippet in C#?