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
What is string method in c#?
What is thread pooling?
How can I create a process that is running a supplied native executable (e.g., Cmd.exe)?
What is type system in c#?
How do I type a whitespace character?
What is the difference between interface and functional interface?
Which is better python or c#?
What is object pool in .net?
what is IDisposal interface,IComparable,IEquatable,IFormatable
What's your approach to fetch static data in your windows form application?
What is iqueryable in c#?
What is the difference between abstract and virtual?
What is bitwise operator in c#?
What is deadlock in c#?
What is clr namespace?