开发者

IEnumerator: Is it normal to have an empty Dispose method?

开发者 https://www.devze.com 2023-01-04 07:02 出处:网络
I\'m writing an IEnumerator<T> class to i开发者_开发百科terate over a COM collection I\'m wrappering.I\'ve noticed that IEnumerator<T> extends IDisposable, so I\'m required to implement th

I'm writing an IEnumerator<T> class to i开发者_开发百科terate over a COM collection I'm wrappering. I've noticed that IEnumerator<T> extends IDisposable, so I'm required to implement the Dispose method.

However, I can't think of anything I would put there, as I only have a reference to the collection (which I wouldn't want being disposed at the end of a foreach), and an int for the index. Is it normal to leave the Dispose method empty?


Yes, it is.

IEnumerator<T> implements IDisposable in case you make an enumerator that does need to be disposed. Since most enumerators don't need to be disposed, the method will usually be empty.

By the way, you can implement your IEnumerator more easily by creating an iterator.

0

精彩评论

暂无评论...
验证码 换一张
取 消