Difference between option strict and option explicit code example
Example: 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.