I figured I would ask... but is there a way to have the Get part of a property available as public, but keep the set as private?
Otherwise I am thinking I need two prope
Public Property Name() As String Get Return _name End Get Private Set(ByVal value As String) _name = value End Set End Property