What is the difference between:
Dim s As String
and
Dim s As [String]
There is no difference.
In VB, you can wrap an identifier in brackets to force it to be parsed as an identifier and not a keyword.
For example, you can write
Dim [If], [As], [Dim]
without any syntax errors.
The brackets have no effect other than indicating that the identifier isn't a keyword, so someVar and [someVar] are identical.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With