Skip to content

Instantly share code, notes, and snippets.

@pjvds
Created December 6, 2011 10:01
Show Gist options
  • Save pjvds/1437626 to your computer and use it in GitHub Desktop.
Save pjvds/1437626 to your computer and use it in GitHub Desktop.
Why do we need two props?
Public Interface IFoo
ReadOnly Property Name As String
End Interface
Public Class Foo
Implements IFoo
Public Property Name As String
Public ReadOnly Property IFoo_Name As String Implements IFoo.Name
Get
Return Me.Name
End Get
End Property
End Class
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment