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
IS IT Possible to inherit the AJAX page from child class which(child) is inherit from page class.Because i should apply some security in child class
What is Object Caching in Visual Studio 2010?
What is the problem with .net generics?
Explain about code access security?
Explain a .net mobile example with details? : Microsoft dot net mobile
What is different about namespace declaration when comparing that to package declaration in java?
What is private constructor? And it's use?
inprocess vs out process session state : Dot net architecture
What is .net mobile input validation. : Microsoft dot net mobile
define cache memory? : Dot net architecture
What is a clickonce application?
What is the importance of updatepanel control?
What is application frame host?
Explain some of the disadvantages due to microsoft.net?
What are the different pipelining hazards? : Dot net architecture