What are the keywords used to pass parameters to
the base class and how do I invoke other constructors.
Answer Posted / varish
Class Base
{
Base(int i)
{
}
}
class child
{
child(int i):base(i)
{
}
}
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
Is c# lazy thread safe?
Explain the Abstract class in c#.net
How to create multi-dimensional array?
How many types of serialization are there in c#?
Name some properties of thread class.
Can we use "this" command within a static method?
What is the delegate in c#?
What are the differences between value types and reference types?
What is serialization and deserialization in c# with example?
Does c# support parameterized properties?
Explain About Postback
Can class be protected in c#?
What does this keyword mean in c#?
What is overriding in c#?
What is the difference between delegates and events in c#?