how can i inharit multiple classes?
Answers were Sorted based on User's Feedback
Answer / rajkumar
.net framework does not support multiple inheritance so should ascertain this to ur interviewer
Is This Answer Correct ? | 3 Yes | 0 No |
Answer / 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 |
Define reflection in .net?
i want to implement grid view value in paypal site. so how to create this code in asp.net with C#
How can we apply themes to an asp.net application?
hi .net gurus. plz if any one has dumps on 70-631 and 70-541 on windows sharepoint services kindly mail me.
Where can i get Latest Microsoft .Net Certification Dumps & what Types of .Net Certifications are there?
How to you can limit Access to Web API to Specific HTTP Verb?
What is css in asp.net?
what are the application layers for a distribute application?
What is server side session management?
Where web.config file is used?
Which adapter should you use, if you want to get the data from an access database?
What is the result when the Web Form containing the following line is complied and executed? <asp:Button id=?thebutton? onClick=?theEvent? /> a) The button control is created; theEvent is the click event handler. b) Compiler error; the control must be set to runat=?server?. c) Compiler error; onClick is not a valid attribute. d) Runtime Exception; the control must be set to runat=?server?.