1.

What are class variables?

Answer»

Classes can contain variables, which can be of private or public. Variables within classes should follow VBScript naming conventions. By default, the variables in class are Public. That is why they can be accessed outside the class.

Example −

Dim var1 , var2.Private var1 , var2.Public var1 , var2.


Discussion

No Comment Found