Skip to content

Instantly share code, notes, and snippets.

@GSoster
Last active January 14, 2019 19:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GSoster/83a665ab5556b16129acda80e7f410e6 to your computer and use it in GitHub Desktop.
Save GSoster/83a665ab5556b16129acda80e7f410e6 to your computer and use it in GitHub Desktop.
blog post - shallow vs deep copy
Public Point
{
public int X { get; set; }
public int Y { get; set; }
public Point(int x, int y)
{
X = x;
Y = y;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment