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 difference between returning iqueryable vs ienumerable?
Is c# easier than javascript?
What is the do while loop code?
What is the difference between an application domain and a process?
What is private and shared assembly?
Why c# is called type safe language?
What is Inheritance in C#?
Why do we use public static void main in c#?
What is appdomain in c#?
How can I get the ascii code for a character in c#?
Is an interface a type c#?
What is the use of command builder?
What is difference between class and interface in c#?
How more than one version of an assembly can keep in same place?
Can c# inherit multiple classes?