G
Guest
Using VB.Net 2005.
I have my interfaces and enums defined in a DLL. For example, I have this
enum:
Public Enum OpStatusTypes
Normal
InProgress
Paused
End Enum
In another DLL I reference that DLL and expose a property based on the enum:
Public ReadOnly Property OpStatus() As OpStatusTypes
Get
Return m_OpStatus
End Get
End Property
The compiler gives me the subject warning -- why?
What concerns should I have about this?
'
I have my interfaces and enums defined in a DLL. For example, I have this
enum:
Public Enum OpStatusTypes
Normal
InProgress
Paused
End Enum
In another DLL I reference that DLL and expose a property based on the enum:
Public ReadOnly Property OpStatus() As OpStatusTypes
Get
Return m_OpStatus
End Get
End Property
The compiler gives me the subject warning -- why?
What concerns should I have about this?
'