Skip to content

Instantly share code, notes, and snippets.

@jnericks
Created October 11, 2010 23:22
Show Gist options
  • Save jnericks/621394 to your computer and use it in GitHub Desktop.
Save jnericks/621394 to your computer and use it in GitHub Desktop.
public IEnumerable<Contact> Contacts
{
get
{
foreach (var contact in _contacts)
{
yield return contact;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment