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

我的未来我决定 提交于 2020-01-02 01:08:06

问题


I'm writing an IEnumerator<T> class to iterate 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?


回答1:


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.



来源:https://stackoverflow.com/questions/3061612/ienumerator-is-it-normal-to-have-an-empty-dispose-method

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!