保留字符串的任何数据收集? 我想知道任何其他可以保留字符串的数据集合,因为枚举不能保留字符串。
答案 0 :(得分:3)
List<string>
或者
StringCollection
应该......
http://msdn.microsoft.com/en-us/library/system.collections.specialized.stringcollection.aspx
答案 1 :(得分:1)
ICollection<string>
或List<string>
或字符串的静态数组(string[]
)怎么样?
答案 2 :(得分:1)
System.Collections.Specialized.StringCollection
答案 3 :(得分:0)
如果您决定使用WPF或Silverlight并需要对其进行数据绑定,那么您应该使用
ObservableCollection<string>
虽然我应该指出字符串不可变。