this is the code for my property

Code:
Dim _playernumber As Integer

    Property Player() As Integer
        Get
            _playernumber = _playernumber
        End Get
        Set(ByVal value As Integer)
            _playernumber = value
        End Set
    End Property
The problem is that when i goto edit the player property at design time it always resets to 0. i know the problem has to do with the _playernumber = _playernumber part but i dont know what to change it to to fix it? any ides or suggestions?