Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
An attempt was made to initialize a non-array variable with a list of values.
Error ID: BC30679
To correct this error
Declare and initialize the variable as an array; for example:
Dim intarray As Integer() = {1, 5, 9}
Initialize the variable as a single value; for example:
Dim intvalue As Integer = 1
See Also
Concepts
Variable Declaration in Visual Basic