使用 .NET 2.0/VB.NET 中的谓词对列表(结构)中的项目进行计数
我需要计算 .NET 2.0 中的 List(Of Structure)
中满足条件的项目。例如:
Dim listcars as New List(Of car)
Structure car
Dim Name as String
Dim year as Integer
End structure
现在我需要统计所有名称为丰田等的汽车。我该怎么做?
I need to count the items that meet a criteria in a List(Of Structure)
in .NET 2.0. For example:
Dim listcars as New List(Of car)
Structure car
Dim Name as String
Dim year as Integer
End structure
Now I need to count all cars with name Toyota, etc.. How do I do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您需要
List.LongCount
。You want
List.LongCount
.干得好。
Here you go.
语法明显错误,但类似这样:
The syntax is blatantly wrong, but something like this: