Skip to content

Instantly share code, notes, and snippets.

@JayBazuzi
Last active June 11, 2016 23:30
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 JayBazuzi/e6fad485cf86e0b9832f6ebccae2dcad to your computer and use it in GitHub Desktop.
Save JayBazuzi/e6fad485cf86e0b9832f6ebccae2dcad to your computer and use it in GitHub Desktop.
class Point
{
public static bool operator==(Point left, Point right)
{
return left.Equals(right);
}
public static bool operator!=(Point left, Point right)
{
return left.Equals(right);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment