Not sure why, but it says that, this is my code,

Code:
Structure db
        Public e As EventArgs
        Shared pass(Integer.MaxValue) As String
        Shared user(Integer.MaxValue) As String
    End Structure

'Begin load
    Private Sub Game_Menu_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        'Setup database usernames and passwords
        db.user(0) = "" 'first error, if I comment this out
        db.pass(0) = "" 'this will show as an error

    End Sub
Not quite sure why, can anyone tell me?