Option Strict On
Public Class Foo
Private _bar As String
Public ReadOnly Property Bar As String
Get
Return _bar
End Get
End Property
End Class