计算 ArrayList C# 中特定对象类型的数量
如何计算 C# 中 ArrayList 中特定对象类型的数量?
更具体地说,我有基类“Letter”、“X”、“Y”和“Z”的三个子类。已创建不同数量的 X、Y 和 Z 对象并将其添加到数组列表中。然后我需要计算该列表中有多少个 X 对象。解决这个问题的最佳方法是什么?
为任何帮助的家伙/女孩干杯。
how does one go about counting the amount of a specific object type in an ArrayList in C#?
More specifically, I have three subclasses of base class 'Letter', 'X', 'Y' and 'Z'. Various amounts of X, Y and Z objects have been created and added to an arraylist. I then need to count how many X objects are in that list. What's the best way of going about this?
Cheers for any help guys/gals.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您还可以使用 OfType扩展方法 :
You can also use the OfType<T> Extension Method: