Skip to content

Instantly share code, notes, and snippets.

@PhiHuyHoang
Created September 20, 2018 09:46
Show Gist options
  • Save PhiHuyHoang/4cf546a69323d3ac2b499d2042a366fe to your computer and use it in GitHub Desktop.
Save PhiHuyHoang/4cf546a69323d3ac2b499d2042a366fe to your computer and use it in GitHub Desktop.
class FacebookWall
{
private List<Post> facebook;
public FacebookWall()
{
facebook = new List<Post>();
}
public void Add(Post npost)
{
facebook.Add(npost);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment