Answers for "Difference between option strict and option explicit"

0

Difference between option strict and option explicit

Option strict requires that variables are declared with a specific type, this means that the Strict option disallows the use of generic variables that can store any data type whereas, option explicit requires that all variables used in the code are declared before they’re used.
Posted by: Guest on April-04-2021

Code answers related to "Difference between option strict and option explicit"

Browse Popular Code Answers by Language