What are the keywords used to pass parameters to
the base class and how do I invoke other constructors.
Answer Posted / radhika
using base keyword we can pass parameters to the baseclass.
When an instance of the DerivedClass is created.The default
constructor in BaseClass is first invoked followed by the
DerivedClass . However, you
can choose which constructor you want to invoke in
BaseClass by using the base keyword in the
default constructor in DerivedClass , like this:
public class BaseClass
{
//---default constructor---
public BaseClass()
{
Console.WriteLine(“Default constructor in BaseClass”);
}
//---parameterized constructor---
public BaseClass(int x)
{
Console.WriteLine(“Parameterized Constructor in BaseClass”);
}
}
public class DerivedClass : BaseClass
{
//---default constructor---
public DerivedClass(): base(4)
{
Console.WriteLine(“Constructor in DerivedClass”);
}
}
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
What does protected internal access modifier mean?
what is inheritance and an example in vb.net and c# of when you might use it?
What is code verification?
Is it good to use var in c#?
What is the difference between “constant” and “readonly” variables in c#?
What is difference between a constant and read-only in C#?
What are scriptable objects?
What is c sharp language?
What is a property c#?
What are All kind of access specifiers for a class and for methods
Why we use get set in c#?
What Is A Multicast Delegate?
What is difference between ienumerable and iqueryable in c#?
What is the difference between protected and internal in c#?
What are the different types of assembly?