ThePentiumGuy
Well-known member
hi
does anyone know of a variable scope that cannot be seen from another class, but can be used as an argument inside the same class?
for example - i tried this with Private
i want the Structure to be Public.. but it gives an error saying i cant make it Public while "Example" Is Private...
is there another scope for that?
does anyone know of a variable scope that cannot be seen from another class, but can be used as an argument inside the same class?
for example - i tried this with Private
Code:
Public Class myClass
Private Enum Example
HI=1
BYE=2
End Enum
Public Structure HeresTheProblem
Dim Xample as Example
End Structure
End Class
i want the Structure to be Public.. but it gives an error saying i cant make it Public while "Example" Is Private...
is there another scope for that?