What is peoples opinions on accessing a classes Properties within the
same class.  Use the property or the instance variable?  For example:

Public Property ID() As Integer
        Get
            Return _intID
        End Get
        Set(ByVal value As Integer)
            If Not _intID = value Then
                _intID = value
            End If
        End Set
    End Property

Private Sub SomeMethod()
    Dim i As Integer = 0


End Sub



Reply via email to