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 an actual parameter?
How do I create a delegate/multicastdelegate?
Can a struct inherit from an interface in c#?
Explain briefly the difference between value type and reference type?
What does it mean to override a method?
What is the predicate of a sentence?
What is expandoobject in c#?
What is a .exe extension files? How is it similar to .dll extension files?
What is system console writeline in c#?
What is list array in c#?
Can we inherit a class with private constructor in c#?
Is double a decimal?
Is multilevel inheritance possible in c#?
What does char mean in c#?
How do you sort a list in c#?