我想要一個wau像enum一樣組織和分組字符串。這是在代碼和值中使用的名稱。由於枚舉只能以積分來創建的,我通常是這樣的:在VB.NET中構建/分組字符串常量的最佳實踐?
**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**
有沒有更好的辦法做到這一點?
你就不能使用枚舉的'的ToString()'? – millimoose
VB.NET也有'Consts',您也可以使用靜態只讀*字段*(而不是屬性)。 – millimoose
你有沒有考慮過使用[String Resource files](http://visualbasic.about.com/od/usingvbnet/a/netres090117.htm)? – DaveShaw