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
Why data types are important in c#?
What are the different types of classes in c#?
What is entity framework c#?
Define an array?
What is strong name in c# and how can we use it?
What is join in c#?
What is integer c#?
Define property in c#.net?
Distinguish between a class and struct?
What is the difference between static class and singleton class in c#?
Explain the Abstract class in c#.net
Explain Constructor and destructor?
What is the difference between Singleton design pattern and Factory design pattern?
Is dll a library?
What is a struct in C#?