When you overload the - unary operators, for an immutable type, you can write it like:
public static Point3 operator - (Point3 p)
{
return new Point3 (-this.X, -p.X, -this.Y, p.Y, -this.Z);
p.Z);
}
But for the + unary operator, how should you implement it? Like this:
public static Point3 operator + (Point3 p)
{
return p;
}
or like this:
public static Point3 operator + (Point3 p)
{
return new Point3 (p);
}
