Skip to content

Instantly share code, notes, and snippets.

@dbrattli
Last active October 16, 2018 17:38
Show Gist options
  • Save dbrattli/b38182db62741b4e98bf to your computer and use it in GitHub Desktop.
Save dbrattli/b38182db62741b4e98bf to your computer and use it in GitHub Desktop.
.NET IEnumerator<T>
public interface IDisposable {
void Dispose();
}
public interface IEnumerator<out T> : IDisposable
{
T Current {
get;
}
bool MoveNext();
void Reset();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment