I\'m pretty new to C# and I\'m trying to do something but without much success. I am trying to use the class Point
(the one with coordinates).
This is t
If you just want to use a simple structure for 2 ints, you can use the Tuple class (from the System namespace).
Tuple
In time: As stated by @Aaron Hudon on comments, be aware that a Tuple is a class (so, by using it you'll be having an instance's reference) while a Point is a struct. Thanks for the observation Aaron Hudon.