📜  选项严格和选项显式之间的区别 - 无论代码示例

📅  最后修改于: 2022-03-11 15:00:03.358000             🧑  作者: Mango

代码示例1
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.