What are the keywords used to pass parameters to
the base class and how do I invoke other constructors.
Answer Posted / ram
Class Base
{
Base(int i)
{
}
}
class child
{
child(int i):Base(i)
{
}
}
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Why do we need oops in c#?
How many types of constructors are available in c#?
Can abstract class have constructor c#?
What is IL / CIL / MSIL?
What is data annotation in c#?
What do you understand by 'access specifiers' in C#?
What is an event in c#?
Which program construct must return a value?
What are the steps to create a webservice and consume it?
What are some examples of desktop applications?
To allow an element to be accessed using a unique key which .NET collection class is used ?
What is Wrapper class in dot net?
Difference between a sub and a function in c#.
What are the basic string operations? Explain.
What is transparent caching with aop ?