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
Can user control be stored in library?
What is the difference between mechine.config and web.config?
What is a session in programming?
What are the different types of proxy patterns?
How do you store a value in viewstate and retrieve them?
Can we set which type of comparison we want to perform by the CompareValidator control?
How many types of controls are there in asp.net?
What parameters can you pass in the url of the api? Can get and post use the same url?
What is content place holder?
Is it possible to write code in many languages in one asp.net project?
Explain Features in ASP.NET
What are the 3 types of web?
Whta are the Various steps taken to optimize a web based application (caching, stored procedure etc.) ?
Why do we use web config?
If 200 is for all successful operation then why do we have 201 response codes?