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) { }
}
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.