In the class below what does the "owner" argument do to both myClass and the base class?
public class Base
{
public myClass(owner) : base (owner) { }
}
|
If you have two classes, one is a base class the other a derived class, when you create constructor for the derived class, you can pass arguments to the base clas.
|
|||||||||||||
|
|
The following would compile and seem to fit your scenario minus the fact that you're not using the verbatim identifier
The previous example demonstrates how to pass a constructor argument down to the |
||||
|
|
newas a sample class name in your question ?! – Xander Aug 1 '12 at 21:21