What are the rules for creating a variable in Visual Basic?
Answers
Answered by
3
Answer:
Rules for naming variables in Visual Basic
Must be unique within scope.
Must begin with a letter or the underscore _ character.
May not contain embedded spaces or many special characters (. , “ - $ # * and others). The underscore _ is a valid character.
May not be a reserved word.
Similar questions