What do you mean by instance variable in visual basic
Answer»
If it is declared with the SHARED keyword, it is a shared variable, and it exists in a SINGLECOPY shared among all instances of the CLASS or structure. Otherwise it is an instance variable, and a separate copy of it is CREATED for each instance of the class or structure.