S
Scott M.
If square brackets in VB .NET are to alert the compiler that we are using a
word as an identifier that happens to be the same name as a reserved word,
as in:
Dim [Exit] As Integer
Then, why must I access the shared GetNames() method of an Enum with [Enum],
since Enum is the actual type's name and GetName() is a shared method of the
type?
-Scott
word as an identifier that happens to be the same name as a reserved word,
as in:
Dim [Exit] As Integer
Then, why must I access the shared GetNames() method of an Enum with [Enum],
since Enum is the actual type's name and GetName() is a shared method of the
type?
-Scott