I just wrote this and compiler didnt underline it, do we have such a thing!!!?!!

Public ReadOnly curX As Integer

This is in a class. So is that the same as this?
Code:
    Public ReadOnly Property CurX() As Integer
        Get
            Return mCurX
        End Get
    End Property