How do you implement Inheritance in dot net ?
Answer Posted / mahesh babu ummaneni
Inheritence is nothing but base class properties come to derived class
example
class sample
{
//here we write some members
}
class sampl1:sample
{
//sample members acess here
}
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
Is array passed by reference in c#?
How do I do implement a assert?
What is difference between asp net and c# net?
Are arrays immutable c#?
Can non-default constructors be used with single call sao?
What is a service layer c#?
How more than one version of an assembly can keep in same place?
What is sqladapter c#?
Why do we need static class in c#?
Define interface class in c#?
What is nullable types in c#?
List the difference between the virtual method and the abstract method?
What is datagrid c#?
What is Asynchronous call and how it can be implemented using delegates?
What is Wrapper class in dot net?