计算 ArrayList C# 中特定对象类型的数量

发布于 2024-12-08 13:21:37 字数 173 浏览 0 评论 0原文

如何计算 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

掌心的温暖 2024-12-15 13:21:37

您还可以使用 OfType扩展方法

int myCount = myArrayList.OfType<X>().Count()

You can also use the OfType<T> Extension Method:

int myCount = myArrayList.OfType<X>().Count()
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文