How do you inherit from a class in C#?
Answer Posted / shadab
write first derived class name after that colon(:)and then
write super class name.
for example
class Base
{
}
class Derived:Base
{
}
for more information u can visit
http://www.shadab-programminghelp.blogspot.com
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is the default modifier for class in c#?
What is bit in c#?
Is xamarin free?
When should we use delegates in c#?
Is dictionary reference type c#?
What is an array of arrays called?
What is the implicit name of the parameter that gets passed into the class set method?
Can a constructor have a return type?
What is literal control
Explain the access modifiers in c#?
What is the difference between interface and abstract class in c#?
Is lazy thread safe c#?
What are namespaces, and how they are used?
Explain the difference between the debug class and trace class?
What is throw in c#?