I would like a wau to organize and group a collection of strings in the same way as an enum. That is with a name used in code and a value. Since enums can only be created as integrals, I usually do like this:
**Public Structure SomeStrings
Public Shared ReadOnly Property Something1 As String
Get
Return "Something1"
End Get
End Property
Public Shared ReadOnly Property Something2 As Color
Get
Return "Something2"
End Get
End Property
End Structure**
Is there a better way to do it?