对名称值集合进行排序
如何按字母顺序对名称值集合进行排序?我是否必须先将其转换为另一个列表,例如排序列表或 Ilist 或其他列表?如果那么我该怎么做?现在我的所有字符串都在 namevaluecollection 变量中。
How do I sort a namevaluecollection in alphabetical order? Do I have to cast it to another list first like the sorted list or Ilist or something? If then how do I do that? right now I have all my string in the the namevalucollection variable.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您手中有合适的集合,最好先使用它。但是,如果您必须对
NameValueCollection
进行操作,这里有一些不同的选项:Preferably use a suitable collection to begin with if it's in your hands. However, if you have to operate on the
NameValueCollection
here are some different options:请参阅此问题:How to sort NameValueCollection using a key in C#?
...建议使用
SortedDictionary
See this question: How to sort NameValueCollection using a key in C#?
...which suggests using a
SortedDictionary