how do you shadow an enumeration

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Can some one show me how to shadow an enumeration, specifically the
System.Data.CommandType enumeration.

Thanks,
Kent
 
Shadows statement cannot be put in an Enum
 
Public Class MyBasEnum

Public Enum anEnum As Integer

one

two

three

End Enum

End Class

Public Class MySubEnum

Inherits MyBasEnum

Public Shadows Enum anEnum

four

five

six

End Enum

End Class
 
* "=?Utf-8?B?S2VudA==?= said:
Can some one show me how to shadow an enumeration, specifically the
System.Data.CommandType enumeration.

Please be more specific.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top