Skip to content

Instantly share code, notes, and snippets.

@dsibinski
Created August 30, 2021 03:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dsibinski/bb9e8ef54834656d4994e337c00f6c8a to your computer and use it in GitHub Desktop.
Save dsibinski/bb9e8ef54834656d4994e337c00f6c8a to your computer and use it in GitHub Desktop.
class MyObjectEnumerator
{
public bool MoveNext()
{
throw new NotImplementedException();
}
public void Reset()
{
throw new NotImplementedException();
}
public MyObject Current { get; }
public void Dispose()
{
throw new NotImplementedException();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment