Skip to content

Instantly share code, notes, and snippets.

@mariusz
Created January 17, 2009 13:54
Show Gist options
  • Save mariusz/48346 to your computer and use it in GitHub Desktop.
Save mariusz/48346 to your computer and use it in GitHub Desktop.
public override bool Equals(object obj)
{
CustomPoint point = (CustomPoint)obj;
if(point == null)
{
return false;
}
if(this.x == point.x && this.y == point.y)
{
return true;
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment