how do u achieve multilevel inheritance in .NET ?
Answer Posted / sandeep
Public Class ml1
Sub ml11()
MsgBox("hi")
End Sub
End Class
Public Class ml2
Inherits ml1
Sub ml22()
MsgBox("san")
End Sub
End Class
Public Class ml3
Inherits ml2
End Class
This ll give u msg
Hi
San
by inheriting methods from both the classes
| Is This Answer Correct ? | 3 Yes | 4 No |
Post New Answer View All Answers
what is polymorphism and advantage ?
What is the problem with .net generics?
What is MS chart control in visual studio?
Can you explain control extenders?
How resource files are used in .net?
What is an asssembly qualified name? Is it a filename? How is it different?
Explain the process of gc?
What is the use of CLR in .NET?
Explain the five stages in a dlx pipeline? : Dot net architecture
What is .net mobile lists. Explain with an example? : Microsoft dot net mobile
Explain the Lapsed Listener problem in .net
HttpHendler and HttpModules
Whate are resource files? How are they used in .net?
Why am I getting an invalidoperationexception when I serialize an arraylist?
How can we integrate atlas with web services?