C#:
class Inherit : c1
{
Inherit(){} // calls c1() constructor but not c1(string argument)
//which messes things up.
//How would I call the constructor with an argument in the base class?
}
class c1 : UserControl
{
public c1(){}
public c1(string argument)
{
// argument is used here and is important!
}
}