J
John A Grandy
apparently there is no problem with naming a local variable with the same
name as the type it is declared as .... ?
Public MyClass
Enum SpecialID
Special1 = 1
....
End Enum
Public Function MyFunction
Dim SpecialID As SpecialID
SpecialID = SpecialID.Special1
End Function
End Class
name as the type it is declared as .... ?
Public MyClass
Enum SpecialID
Special1 = 1
....
End Enum
Public Function MyFunction
Dim SpecialID As SpecialID
SpecialID = SpecialID.Special1
End Function
End Class