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


Please Help Members By Posting Answers For Below Questions

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

1721


What is Object Caching in Visual Studio 2010?

745


What is the problem with .net generics?

794


Explain about code access security?

724


Explain a .net mobile example with details? : Microsoft dot net mobile

630






What is different about namespace declaration when comparing that to package declaration in java?

712


What is private constructor? And it's use?

805


inprocess vs out process session state : Dot net architecture

698


What is .net mobile input validation. : Microsoft dot net mobile

696


define cache memory? : Dot net architecture

703


What is a clickonce application?

668


What is the importance of updatepanel control?

708


What is application frame host?

783


Explain some of the disadvantages due to microsoft.net?

726


What are the different pipelining hazards? : Dot net architecture

772