Skip to content

Instantly share code, notes, and snippets.

@underwhelmed
Created June 19, 2012 19:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save underwhelmed/2956078 to your computer and use it in GitHub Desktop.
Save underwhelmed/2956078 to your computer and use it in GitHub Desktop.
ugh, legacy code
Public Class CustomerLogo
Public Sub New()
Me.New("")
End Sub
Public Sub New(ByVal url As String)
Me._url = url
End Sub
Private _url As String
Public Property Url() As String
Get
Return _url
End Get
Set(ByVal value As String)
_url = value
End Set
End Property
Public Overrides Function ToString() As String
Return Me._url
End Function
End Class
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment