Skip to content

Instantly share code, notes, and snippets.

@jhollingworth
Created June 10, 2010 14:51
Show Gist options
  • Save jhollingworth/433108 to your computer and use it in GitHub Desktop.
Save jhollingworth/433108 to your computer and use it in GitHub Desktop.
class User
{
User Doppelganger { get; set; }
string Name { get; set; }
}
var user = new User { Name = "Ben" };
user.Doppelganger = user;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment