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
How can I create master page in asp net?
What is the difference between typeof() vs gettype()?
What are the differnt types of handler in ASP.NET?
Explain the difference between mvc (model-view-controller) and mvp (model-view-presenter)? : asp.net mvc
Differentiate between early binding and late binding.
What is the file extension of web service?
Explain the advantages of caching?
To wrap up a call to a Web service the standard used is..?
What are main return types supported in Web API?
Give 2 examples for scenarios when routing is not applied?
What is a nested masterpage in asp.net 2.0? Can there be a master page inside a masterpage?
How do you do client-side validation in .net? How to disable validator control by client side javascript?
How long should a session id be?
What are the advantages of the code-behind feature?
What is data cache in sql server?