Answer Posted / ratnesh
If u want to multiple inheritance via classes then u can do
this ..
class A
{
Method1(){}
}
class B:A
{
Method2(){}
}
And now create third class suppose C and Inherit it from
class B.Now class C have both methods Method1 of A and
Method2 of B.
class C:B
{
}
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
Explain the difference between response.redirect vs server.transfer
What is synchronous and Asynchronous post back ?
By default, Web API sends HTTP response with which of the following status code for all uncaught exception?
What is a pixel url?
What are the advantages of the code-behind feature?
Which two new properties are added in asp.net 4.0 page class?
List all templates of the repeater control.
Can I read the hard disk serial # of the client computer using asp.net?
What is difference between rest and soap?
What do you mean by serialize?
Explain a program using code nuggets to create a simple application? : asp.net mvc
Explain the concept of MVC Scaffolding?
In which event of the page viewstate is available?
To get the values in two different controls to match which control you use it?
How do you declare delegates and are delegates and events one and the same and explain how do you declare delegates and invoke them ?