I'm hitting the following issue in this simple code:
Public Class BookStoreDatabase
Public publicationArray(0 To 3) As String
publicationArray(0) = "Stories to Scare People With"
End Class
The bit "publicationArray(0) etc" is telling me that a declaration for "publicationArray" is expected. This seems like it shouldn't be happening.