Skip to content

Instantly share code, notes, and snippets.

@jnericks
Created October 11, 2010 23:20
Show Gist options
  • Save jnericks/621392 to your computer and use it in GitHub Desktop.
Save jnericks/621392 to your computer and use it in GitHub Desktop.
public class AddressBook
{
public IEnumerable<Contact> Contacts
{
get { return _contacts; }
}
public AddressBook()
{
_contacts = new List();
}
private IList<Contact> _contacts;
public void AddContact(Contact contact)
{
_contacts.Add(contact);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment