在C#中是否可以确定变量是否具有枚举器
我正在尝试编写一个通用的比较例程。但是,我的班级中的一些项目位于集合中,我需要枚举进行比较。
有没有一种简单的方法,无需 try/catch 块即可确定变量是否支持 GetEnumerator()
I am trying to write a generic comparison routine. However, some of the items in my class are in Collections and I need to enumerate to compare.
Is there an easy way, without a try/catch block to determine is a variable supports GetEnumerator()
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
将其转换为
IEnumerable
:Cast it into
IEnumerable
:建议您检查该对象是否是 IEnumerable 的答案是相当正确的。绝大多数情况下,如果您的集合或对象支持枚举,它将实现该接口。但这不是必需的。
对于要在
foreach
中枚举的内容,它实际上只需要公开一个GetEnumerator()
方法,该方法返回具有合适的MoveNext()
的对象和当前
实现。考虑这样的事情:您可以将
new CustomCollection()
放入循环中并获取值 1..10。无论如何,首先检查接口。如果这就是您想要支持的,那就好。如果您想加倍努力,则需要像编译器一样执行步骤,例如检查适当的方法和返回类型。这是一个完全未经测试的实现草案。
LinqPad 中的一些快速测试,但绝不是详尽的......
The answers suggesting you check to see if the object is an
IEnumerable
are reasonably spot on. It's going to be the case the overwhelming majority of the time that your collection or object will implement that interface if it supports enumeration. But it is not required.For something to be enumerated in a
foreach
, it really only needs to expose aGetEnumerator()
method that returns an object with suitableMoveNext()
andCurrent
implementations. Consider something like:You can put
new CustomCollection()
into a loop and get the values 1..10.By all means, check for the interface first. If that's all you want to support, fine. If you want to go that extra mile, you'd need to perform steps like the compiler would, as in check for the appropriate methods and return types. Here's a thoroughly untested draft of an implementation.
Some quick tests in LinqPad, but by no means exhaustive...
GetEnumerator()
是在IEnumerable
接口上定义的,因此:GetEnumerator()
is defined on theIEnumerable
interface, so:检查它是否实现了
IEnumerable
。IEnumerable
派生自IEnumerable
,因此任何泛型集合也都实现IEnumerable
。如果您有一个类型,您可以使用
Type.IsAssignableFrom
如果您有一个实例,您可以使用is
/as
运算符。Check if it implements
IEnumerable
.IEnumerable<T>
derives fromIEnumerable
, so any generic collection implementsIEnumerable
too.if you have a type you can use
Type.IsAssignableFrom
if you have an instance you can use theis
/as
operators.IEnumerable
接口确定某些内容是否可枚举。The
IEnumerable
interface determines whether or not something is enumerable.