How do you implement Inheritance in dot net ?
Answer Posted / tarun kumar
In c# we include the " : "
here example
class class1
{
----
----
----
}
class class2 : class1
{
-----
-----
-----
}
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
How many types of constructors are available in c#?
How do I make a dll in c#?
How can we make a thread sleep for infinite period ?
What is the use of partial methods?
What is web forms in c#?
Is int an object in c#?
How do namespaces work?
Difference between value and reference type.
Define c# delegate?
Explain about accessibility modifier 'protected internal'?
What is a Command Object in C#?
Why are mutable structs evil?
Why do we use polymorphism in c#?
How does it work?
What is string interpolation in c#?