W
wildman
Looking at an asp.net website with a lot of OOP and I am trying to
understand where the benefit of all this might be.
There is a user control with codebehind properties that looks like
this:
Partial Class uc
Inherits System.Web.UI.UserControl
Implements UM.IUIBuildingBlock
Public Property Checked() As Boolean Implements
XX.IUIBuildingBlock.Checked
Get
Return Nothing
End Get
Set(ByVal Value As Boolean)
End Set
End Property
understand where the benefit of all this might be.
There is a user control with codebehind properties that looks like
this:
Partial Class uc
Inherits System.Web.UI.UserControl
Implements UM.IUIBuildingBlock
Public Property Checked() As Boolean Implements
XX.IUIBuildingBlock.Checked
Get
Return Nothing
End Get
Set(ByVal Value As Boolean)
End Set
End Property