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
What is array formula?
What is Web.config?
What is dictionary and hashtable in c#?
What do you mean by object pooling?
What are the value types in c#?
Can you declare a field readonly?
What is sqladapter c#?
What is the extension of c# file?
What are the steps to create an assembly and add it to the gac?
How do I simulate optional parameters to com calls?
When would you use generics in your code c#?
What is console application with example?
Is c# good for web development?
How do I enforce const correctness in c#?
Explain the difference between the system.array.copyto() and system.array.clone()?