In VB you can both define and assign a value to a variable in one line.
Can you do this in Basic4Android?
VB code sample:
Dim strMyVariable As String = "Some text is in here"
Update: I tried this and got the following error:
NumberOfColumns As Int = 5 ' Number of columns.
Compiling code. Error
Error compiling program.
Error description: '=' expected.
Occurred on line: 13
NumberOfColumns As Int = 5' Number of columns.
Word: numberofcolumns
Update:
Compiling code. Error
Error compiling program.
Error description: Syntax error.
Occurred on line: 13
Dim NumberOfColumns As Int = 5 ' Number of columns.
Word: int