如何设置NameValueCollection的长度
我是 C# 新手(不是编程新手)。请问,减少 NameValueCollection 对象中项目数量的最简单方法是什么?例如,我的集合中有 13 个名称-值对,我想将其剪切到前 5 个。我真的必须循环执行吗?
谢谢
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
如果您使用的是 C# 4.0 并且扩展方法适用于您的集合,则您应该能够简单地编写
var lFirst5 = lCollection.Take(5)
。嗯。
刚刚查看了 NameValueCollection,我发现您无法对其执行 .Take() 操作。我个人会使用不同的集合...也许
List>
?If you're using C# 4.0 and the extension methods work on your collection, you should be able to simply write
var lFirst5 = lCollection.Take(5)
.Meh.
Just had a look at NameValueCollection and I see you can't do .Take() on it. I'd use a different collection personally... maybe
List<KeyValuePair<string, object>>
?如果您确实想使用 NameValueCollection 并且确实想从原始集合中删除项目,那么是的,您必须在循环中执行此操作:
请注意,您应该使用 NameValueCollection 的唯一原因 是指您绑定到 .NET 1.1 或更早版本。对于所有其他版本,相当于
NameValueCollection
的是Dictionary
If you really want to use
NameValueCollection
and you really want to remove items form the original collection then yes, you have to do it in a loop:Note that the only reason you should use the
NameValueCollection
is when you are bound to .NET 1.1 or earlier. For all other versions the equivalent toNameValueCollection
isDictionary<string,string>
在 C# 字典中,或任何键值对集合(例如 NameValueCollection)没有 GetRange、AddRange 方法...
但是,如果您使用 Dictionary 而不是 NameValueCollection,则可以使用 Linq 查询来让您的生活更轻松。
您可以删除前 5 个元素,并且可以选择以“A”开头的名称:
In C# Dictionary, or any Key-Value pair collection such as NameValueCollection don't have GetRange, AddRange methods...
However if you'd use Dictionary instead of NameValueCollection you could use Linq queries to make your life easier.
You can remove the first 5 elements, and you could select, for example, names starting with "A":
乍一看,我会使用 LINQ 的 Take 方法来获取此类集合的前 5 个元素。不幸的是,linq 无法访问 NameValueCollection 对象。
这就是为什么我建议使用 List 或 SortedList 来代替:
如果您确实需要使用 NameValueCollection,那么您可以查看此相关问题,参考 使 NameValueCollection 可访问 LINQ。使用 LINQ 将使您的生活更轻松
At first sight, I would use the Take method of LINQ to get the 5 first elements of such a collection. Unfortunately, the NameValueCollection object is not accessible to linq.
That's why I would advice to use a List or a SortedList instead:
If you really need to use a NameValueCollection, then you can have a look on this related question that refer to make a NameValueCollection accessible to LINQ. Using LINQ will make your life easier