Skip to content

Instantly share code, notes, and snippets.

@larsw
Created December 5, 2013 19:45
Show Gist options
  • Select an option

  • Save larsw/7812539 to your computer and use it in GitHub Desktop.

Select an option

Save larsw/7812539 to your computer and use it in GitHub Desktop.
A terse way of returning an empty enumerable instance.
public IEnumerable<object> GetObjects()
{
yield break;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment