Public
The Public statement allows you to declare public
variables that are accessible to any code that uses your
class.
While Active Server Pages will allow you to use the Public
statement outside of a class declaration, we recommend that you
only use it within a class declaration. Outside of a class, the
Public statement has the same meaning as the Dim
statement.
Class Imaginary Public fReal ' real part of the imaginary number
Public fImaginary ' imaginary part of the imaginary number
End Class
|
 |

|