Skip to content

Instantly share code, notes, and snippets.

@Quantumplation
Created March 9, 2013 00:50
Show Gist options
  • Save Quantumplation/5121836 to your computer and use it in GitHub Desktop.
Save Quantumplation/5121836 to your computer and use it in GitHub Desktop.
struct Point
{
public Point(int x, int y)
{
this = new Point();
X = x; Y = y;
}
int X; int Y;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment