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
How do you encapsulate in c#?
How do I create a multilanguage, single-file assembly?
What is the difference between hashtable and dictionary?
How assembly versioning in .NET prevent DLL Hell problem?
What is multicast delegate explain with example?
What are variables in c#?
What are generics in c#.net?
Explain “static” keyword in c#?
Explain what a diffgram, and a good use for one Define diffgram? How it be used?
Why do we need reflection in c#?
What does exclamation mark mean c#?
While debugging a C# application can you change the value of a variable?
What is option parameter in C#?
What is assembly c#?
What is datagridview in c#?