public static void Main()
joke.Content = "Some Joke";
Joke anotherJoke = new Joke();
anotherJoke.Content = "Another Joke";
Console.WriteLine("This is first joke: {0}", meme.getJoke());
meme.setJoke(anotherJoke);
Console.WriteLine("This is second joke: {0}", meme.getJoke());
public void setJoke(Joke newJoke)
return this.joke.ToString();
public string Content { private get; set; }
public override string ToString()