Hello friends I want to create a method that get two list of point (object that I'm created) and return 3 list that include:
Points that exist in the first and the second list.
Points that exist in the first list and not exist in the second list.
Points that not exist in the first and exist in the second list.
What is the best wat to do that?
Point.cs:
Public class Point {public int X; public int Y}