This is allowed:
Public Property Text() As String
Whereas for a read-only property why aren't I allowed an equivalent?
Public ReadOnly Property Text() As String
I seem to be forced to use:
Public ReadOnly Property Text() As String
Get
Return fText
End Get
End Property